normalize includes: common/repositories

This commit is contained in:
brainiac 2025-12-17 09:33:09 -08:00 committed by Alex
parent 451eb0806a
commit d306e139e8
504 changed files with 2532 additions and 3538 deletions

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_AA_ABILITY_REPOSITORY_H
#define EQEMU_AA_ABILITY_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_aa_ability_repository.h"
#include "common/repositories/base/base_aa_ability_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AaAbilityRepository: public BaseAaAbilityRepository {
public:
@ -46,5 +46,3 @@ public:
// Custom extended repository methods here
};
#endif //EQEMU_AA_ABILITY_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_AA_RANK_EFFECTS_REPOSITORY_H
#define EQEMU_AA_RANK_EFFECTS_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_aa_rank_effects_repository.h"
#include "common/repositories/base/base_aa_rank_effects_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AaRankEffectsRepository: public BaseAaRankEffectsRepository {
public:
@ -46,5 +46,3 @@ public:
// Custom extended repository methods here
};
#endif //EQEMU_AA_RANK_EFFECTS_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_AA_RANK_PREREQS_REPOSITORY_H
#define EQEMU_AA_RANK_PREREQS_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_aa_rank_prereqs_repository.h"
#include "common/repositories/base/base_aa_rank_prereqs_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AaRankPrereqsRepository: public BaseAaRankPrereqsRepository {
public:
@ -46,5 +46,3 @@ public:
// Custom extended repository methods here
};
#endif //EQEMU_AA_RANK_PREREQS_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_AA_RANKS_REPOSITORY_H
#define EQEMU_AA_RANKS_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_aa_ranks_repository.h"
#include "common/repositories/base/base_aa_ranks_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AaRanksRepository: public BaseAaRanksRepository {
public:
@ -46,5 +46,3 @@ public:
// Custom extended repository methods here
};
#endif //EQEMU_AA_RANKS_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_ACCOUNT_FLAGS_REPOSITORY_H
#define EQEMU_ACCOUNT_FLAGS_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_account_flags_repository.h"
#include "common/repositories/base/base_account_flags_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AccountFlagsRepository: public BaseAccountFlagsRepository {
public:
@ -74,5 +74,3 @@ public:
);
}
};
#endif //EQEMU_ACCOUNT_FLAGS_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_ACCOUNT_IP_REPOSITORY_H
#define EQEMU_ACCOUNT_IP_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_account_ip_repository.h"
#include "common/repositories/base/base_account_ip_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AccountIpRepository: public BaseAccountIpRepository {
public:
@ -46,5 +46,3 @@ public:
// Custom extended repository methods here
};
#endif //EQEMU_ACCOUNT_IP_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_ACCOUNT_REPOSITORY_H
#define EQEMU_ACCOUNT_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_account_repository.h"
#include "common/repositories/base/base_account_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AccountRepository: public BaseAccountRepository {
public:
@ -108,5 +108,3 @@ public:
return AccountRepository::UpdateOne(db, e);
}
};
#endif //EQEMU_ACCOUNT_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_ACCOUNT_REWARDS_REPOSITORY_H
#define EQEMU_ACCOUNT_REWARDS_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_account_rewards_repository.h"
#include "common/repositories/base/base_account_rewards_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AccountRewardsRepository: public BaseAccountRewardsRepository {
public:
@ -46,5 +46,3 @@ public:
// Custom extended repository methods here
};
#endif //EQEMU_ACCOUNT_REWARDS_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_ADVENTURE_DETAILS_REPOSITORY_H
#define EQEMU_ADVENTURE_DETAILS_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_adventure_details_repository.h"
#include "common/repositories/base/base_adventure_details_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AdventureDetailsRepository: public BaseAdventureDetailsRepository {
public:
@ -46,5 +46,3 @@ public:
// Custom extended repository methods here
};
#endif //EQEMU_ADVENTURE_DETAILS_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_ADVENTURE_MEMBERS_REPOSITORY_H
#define EQEMU_ADVENTURE_MEMBERS_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_adventure_members_repository.h"
#include "common/repositories/base/base_adventure_members_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AdventureMembersRepository: public BaseAdventureMembersRepository {
public:
@ -46,5 +46,3 @@ public:
// Custom extended repository methods here
};
#endif //EQEMU_ADVENTURE_MEMBERS_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_ADVENTURE_STATS_REPOSITORY_H
#define EQEMU_ADVENTURE_STATS_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_adventure_stats_repository.h"
#include "common/repositories/base/base_adventure_stats_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AdventureStatsRepository: public BaseAdventureStatsRepository {
public:
@ -104,5 +104,3 @@ public:
db.QueryDatabase(query);
}
};
#endif //EQEMU_ADVENTURE_STATS_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_ADVENTURE_TEMPLATE_ENTRY_FLAVOR_REPOSITORY_H
#define EQEMU_ADVENTURE_TEMPLATE_ENTRY_FLAVOR_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_adventure_template_entry_flavor_repository.h"
#include "common/repositories/base/base_adventure_template_entry_flavor_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AdventureTemplateEntryFlavorRepository: public BaseAdventureTemplateEntryFlavorRepository {
public:
@ -46,5 +46,3 @@ public:
// Custom extended repository methods here
};
#endif //EQEMU_ADVENTURE_TEMPLATE_ENTRY_FLAVOR_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_ADVENTURE_TEMPLATE_ENTRY_REPOSITORY_H
#define EQEMU_ADVENTURE_TEMPLATE_ENTRY_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_adventure_template_entry_repository.h"
#include "common/repositories/base/base_adventure_template_entry_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AdventureTemplateEntryRepository: public BaseAdventureTemplateEntryRepository {
public:
@ -46,5 +46,3 @@ public:
// Custom extended repository methods here
};
#endif //EQEMU_ADVENTURE_TEMPLATE_ENTRY_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_ADVENTURE_TEMPLATE_REPOSITORY_H
#define EQEMU_ADVENTURE_TEMPLATE_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_adventure_template_repository.h"
#include "common/repositories/base/base_adventure_template_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AdventureTemplateRepository: public BaseAdventureTemplateRepository {
public:
@ -46,5 +46,3 @@ public:
// Custom extended repository methods here
};
#endif //EQEMU_ADVENTURE_TEMPLATE_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_ALTERNATE_CURRENCY_REPOSITORY_H
#define EQEMU_ALTERNATE_CURRENCY_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_alternate_currency_repository.h"
#include "common/repositories/base/base_alternate_currency_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AlternateCurrencyRepository: public BaseAlternateCurrencyRepository {
public:
@ -46,5 +46,3 @@ public:
// Custom extended repository methods here
};
#endif //EQEMU_ALTERNATE_CURRENCY_REPOSITORY_H

View File

@ -1,9 +1,9 @@
#ifndef EQEMU_AURAS_REPOSITORY_H
#define EQEMU_AURAS_REPOSITORY_H
#pragma once
#include "../database.h"
#include "../strings.h"
#include "base/base_auras_repository.h"
#include "common/repositories/base/base_auras_repository.h"
#include "common/database.h"
#include "common/strings.h"
class AurasRepository: public BaseAurasRepository {
public:
@ -46,5 +46,3 @@ public:
// Custom extended repository methods here
};
#endif //EQEMU_AURAS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_AA_ABILITY_REPOSITORY_H
#define EQEMU_BASE_AA_ABILITY_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAaAbilityRepository {
@ -544,5 +544,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_AA_ABILITY_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_AA_RANK_EFFECTS_REPOSITORY_H
#define EQEMU_BASE_AA_RANK_EFFECTS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAaRankEffectsRepository {
@ -424,5 +424,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_AA_RANK_EFFECTS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_AA_RANK_PREREQS_REPOSITORY_H
#define EQEMU_BASE_AA_RANK_PREREQS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAaRankPrereqsRepository {
@ -400,5 +400,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_AA_RANK_PREREQS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_AA_RANKS_REPOSITORY_H
#define EQEMU_BASE_AA_RANKS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAaRanksRepository {
@ -520,5 +520,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_AA_RANKS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_ACCOUNT_FLAGS_REPOSITORY_H
#define EQEMU_BASE_ACCOUNT_FLAGS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAccountFlagsRepository {
@ -400,5 +400,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_ACCOUNT_FLAGS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_ACCOUNT_IP_REPOSITORY_H
#define EQEMU_BASE_ACCOUNT_IP_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAccountIpRepository {
@ -412,5 +412,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_ACCOUNT_IP_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_ACCOUNT_REPOSITORY_H
#define EQEMU_BASE_ACCOUNT_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAccountRepository {
@ -663,5 +663,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_ACCOUNT_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_ACCOUNT_REWARDS_REPOSITORY_H
#define EQEMU_BASE_ACCOUNT_REWARDS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAccountRewardsRepository {
@ -400,5 +400,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_ACCOUNT_REWARDS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_ADVENTURE_DETAILS_REPOSITORY_H
#define EQEMU_BASE_ADVENTURE_DETAILS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAdventureDetailsRepository {
@ -471,5 +471,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_ADVENTURE_DETAILS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_ADVENTURE_MEMBERS_REPOSITORY_H
#define EQEMU_BASE_ADVENTURE_MEMBERS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAdventureMembersRepository {
@ -388,5 +388,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_ADVENTURE_MEMBERS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_ADVENTURE_STATS_REPOSITORY_H
#define EQEMU_BASE_ADVENTURE_STATS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAdventureStatsRepository {
@ -496,5 +496,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_ADVENTURE_STATS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_ADVENTURE_TEMPLATE_ENTRY_FLAVOR_REPOSITORY_H
#define EQEMU_BASE_ADVENTURE_TEMPLATE_ENTRY_FLAVOR_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAdventureTemplateEntryFlavorRepository {
@ -388,5 +388,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_ADVENTURE_TEMPLATE_ENTRY_FLAVOR_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_ADVENTURE_TEMPLATE_ENTRY_REPOSITORY_H
#define EQEMU_BASE_ADVENTURE_TEMPLATE_ENTRY_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAdventureTemplateEntryRepository {
@ -388,5 +388,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_ADVENTURE_TEMPLATE_ENTRY_REPOSITORY_H

View File

@ -9,11 +9,11 @@
* @docs https://docs.eqemu.io/developer/repositories
*/
#ifndef EQEMU_BASE_ADVENTURE_TEMPLATE_REPOSITORY_H
#define EQEMU_BASE_ADVENTURE_TEMPLATE_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAdventureTemplateRepository {
@ -757,5 +757,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_ADVENTURE_TEMPLATE_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_ALTERNATE_CURRENCY_REPOSITORY_H
#define EQEMU_BASE_ALTERNATE_CURRENCY_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAlternateCurrencyRepository {
@ -388,5 +388,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_ALTERNATE_CURRENCY_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_AURAS_REPOSITORY_H
#define EQEMU_BASE_AURAS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseAurasRepository {
@ -496,5 +496,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_AURAS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BASE_DATA_REPOSITORY_H
#define EQEMU_BASE_BASE_DATA_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBaseDataRepository {
@ -484,5 +484,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BASE_DATA_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BLOCKED_SPELLS_REPOSITORY_H
#define EQEMU_BASE_BLOCKED_SPELLS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBlockedSpellsRepository {
@ -555,5 +555,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BLOCKED_SPELLS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOOKS_REPOSITORY_H
#define EQEMU_BASE_BOOKS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBooksRepository {
@ -411,5 +411,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOOKS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_BLOCKED_BUFFS_REPOSITORY_H
#define EQEMU_BASE_BOT_BLOCKED_BUFFS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotBlockedBuffsRepository {
@ -412,5 +412,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_BLOCKED_BUFFS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_BUFFS_REPOSITORY_H
#define EQEMU_BASE_BOT_BUFFS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotBuffsRepository {
@ -603,5 +603,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_BUFFS_REPOSITORY_H

View File

@ -6,16 +6,15 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_CREATE_COMBINATIONS_REPOSITORY_H
#define EQEMU_BASE_BOT_CREATE_COMBINATIONS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotCreateCombinationsRepository {
public:
struct BotCreateCombinations {
@ -388,5 +387,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_CREATE_COMBINATIONS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_DATA_REPOSITORY_H
#define EQEMU_BASE_BOT_DATA_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotDataRepository {
@ -915,5 +915,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_DATA_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://eqemu.gitbook.io/server/in-development/developer-area/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_GROUP_MEMBERS_REPOSITORY_H
#define EQEMU_BASE_BOT_GROUP_MEMBERS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotGroupMembersRepository {
@ -338,5 +338,3 @@ public:
}
};
#endif //EQEMU_BASE_BOT_GROUP_MEMBERS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://eqemu.gitbook.io/server/in-development/developer-area/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_GROUPS_REPOSITORY_H
#define EQEMU_BASE_BOT_GROUPS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotGroupsRepository {
@ -348,5 +348,3 @@ public:
}
};
#endif //EQEMU_BASE_BOT_GROUPS_REPOSITORY_H

View File

@ -9,11 +9,11 @@
* @docs https://eqemu.gitbook.io/server/in-development/developer-area/repositories
*/
#ifndef EQEMU_BASE_BOT_GUILD_MEMBERS_REPOSITORY_H
#define EQEMU_BASE_BOT_GUILD_MEMBERS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotGuildMembersRepository {
@ -399,5 +399,3 @@ public:
}
};
#endif //EQEMU_BASE_BOT_GUILD_MEMBERS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_HEAL_ROTATION_MEMBERS_REPOSITORY_H
#define EQEMU_BASE_BOT_HEAL_ROTATION_MEMBERS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotHealRotationMembersRepository {
@ -399,5 +399,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_HEAL_ROTATION_MEMBERS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_HEAL_ROTATION_TARGETS_REPOSITORY_H
#define EQEMU_BASE_BOT_HEAL_ROTATION_TARGETS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotHealRotationTargetsRepository {
@ -399,5 +399,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_HEAL_ROTATION_TARGETS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_HEAL_ROTATIONS_REPOSITORY_H
#define EQEMU_BASE_BOT_HEAL_ROTATIONS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotHealRotationsRepository {
@ -525,5 +525,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_HEAL_ROTATIONS_REPOSITORY_H

View File

@ -6,16 +6,15 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_INSPECT_MESSAGES_REPOSITORY_H
#define EQEMU_BASE_BOT_INSPECT_MESSAGES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotInspectMessagesRepository {
public:
struct BotInspectMessages {
@ -388,5 +387,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_INSPECT_MESSAGES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_INVENTORIES_REPOSITORY_H
#define EQEMU_BASE_BOT_INVENTORIES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotInventoriesRepository {
@ -567,5 +567,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_INVENTORIES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_OWNER_OPTIONS_REPOSITORY_H
#define EQEMU_BASE_BOT_OWNER_OPTIONS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotOwnerOptionsRepository {
@ -400,5 +400,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_OWNER_OPTIONS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_PET_BUFFS_REPOSITORY_H
#define EQEMU_BASE_BOT_PET_BUFFS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotPetBuffsRepository {
@ -423,5 +423,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_PET_BUFFS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_PET_INVENTORIES_REPOSITORY_H
#define EQEMU_BASE_BOT_PET_INVENTORIES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotPetInventoriesRepository {
@ -399,5 +399,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_PET_INVENTORIES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_PETS_REPOSITORY_H
#define EQEMU_BASE_BOT_PETS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotPetsRepository {
@ -435,5 +435,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_PETS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_SETTINGS_REPOSITORY_H
#define EQEMU_BASE_BOT_SETTINGS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotSettingsRepository {
@ -460,5 +460,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_SETTINGS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_SPELL_CASTING_CHANCES_REPOSITORY_H
#define EQEMU_BASE_BOT_SPELL_CASTING_CHANCES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotSpellCastingChancesRepository {
@ -603,5 +603,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_SPELL_CASTING_CHANCES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_SPELL_SETTINGS_REPOSITORY_H
#define EQEMU_BASE_BOT_SPELL_SETTINGS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotSpellSettingsRepository {
@ -447,5 +447,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_SPELL_SETTINGS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_SPELLS_ENTRIES_REPOSITORY_H
#define EQEMU_BASE_BOT_SPELLS_ENTRIES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotSpellsEntriesRepository {
@ -543,5 +543,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_SPELLS_ENTRIES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_STANCES_REPOSITORY_H
#define EQEMU_BASE_BOT_STANCES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotStancesRepository {
@ -388,5 +388,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_STANCES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_STARTING_ITEMS_REPOSITORY_H
#define EQEMU_BASE_BOT_STARTING_ITEMS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotStartingItemsRepository {
@ -567,5 +567,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_STARTING_ITEMS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BOT_TIMERS_REPOSITORY_H
#define EQEMU_BASE_BOT_TIMERS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBotTimersRepository {
@ -472,5 +472,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BOT_TIMERS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BUG_REPORTS_REPOSITORY_H
#define EQEMU_BASE_BUG_REPORTS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBugReportsRepository {
@ -747,5 +747,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BUG_REPORTS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BUGS_REPOSITORY_H
#define EQEMU_BASE_BUGS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBugsRepository {
@ -519,5 +519,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BUGS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BUYER_BUY_LINES_REPOSITORY_H
#define EQEMU_BASE_BUYER_BUY_LINES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBuyerBuyLinesRepository {
@ -471,5 +471,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BUYER_BUY_LINES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BUYER_REPOSITORY_H
#define EQEMU_BASE_BUYER_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBuyerRepository {
@ -459,5 +459,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BUYER_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_BUYER_TRADE_ITEMS_REPOSITORY_H
#define EQEMU_BASE_BUYER_TRADE_ITEMS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseBuyerTradeItemsRepository {
@ -435,5 +435,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_BUYER_TRADE_ITEMS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHAR_CREATE_COMBINATIONS_REPOSITORY_H
#define EQEMU_BASE_CHAR_CREATE_COMBINATIONS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharCreateCombinationsRepository {
@ -436,5 +436,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHAR_CREATE_COMBINATIONS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHAR_CREATE_POINT_ALLOCATIONS_REPOSITORY_H
#define EQEMU_BASE_CHAR_CREATE_POINT_ALLOCATIONS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharCreatePointAllocationsRepository {
@ -544,5 +544,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHAR_CREATE_POINT_ALLOCATIONS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHAR_RECIPE_LIST_REPOSITORY_H
#define EQEMU_BASE_CHAR_RECIPE_LIST_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharRecipeListRepository {
@ -400,5 +400,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHAR_RECIPE_LIST_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_ACTIVITIES_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_ACTIVITIES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterActivitiesRepository {
@ -424,5 +424,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_ACTIVITIES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_ALT_CURRENCY_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_ALT_CURRENCY_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterAltCurrencyRepository {
@ -400,5 +400,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_ALT_CURRENCY_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_ALTERNATE_ABILITIES_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_ALTERNATE_ABILITIES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterAlternateAbilitiesRepository {
@ -412,5 +412,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_ALTERNATE_ABILITIES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_AURAS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_AURAS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterAurasRepository {
@ -400,5 +400,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_AURAS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_BANDOLIER_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_BANDOLIER_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterBandolierRepository {
@ -436,5 +436,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_BANDOLIER_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_BIND_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_BIND_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterBindRepository {
@ -459,5 +459,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_BIND_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_BUFFS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_BUFFS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterBuffsRepository {
@ -568,5 +568,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_BUFFS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_CORPSE_ITEMS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_CORPSE_ITEMS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterCorpseItemsRepository {
@ -544,5 +544,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_CORPSE_ITEMS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_CORPSES_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_CORPSES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterCorpsesRepository {
@ -987,5 +987,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_CORPSES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_CURRENCY_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_CURRENCY_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterCurrencyRepository {
@ -568,5 +568,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_CURRENCY_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_DATA_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_DATA_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterDataRepository {
@ -1635,5 +1635,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_DATA_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_DISCIPLINES_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_DISCIPLINES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterDisciplinesRepository {
@ -400,5 +400,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_DISCIPLINES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_EVOLVING_ITEMS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_EVOLVING_ITEMS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterEvolvingItemsRepository {
@ -471,5 +471,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_EVOLVING_ITEMS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_EXP_MODIFIERS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_EXP_MODIFIERS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterExpModifiersRepository {
@ -424,5 +424,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_EXP_MODIFIERS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_EXPEDITION_LOCKOUTS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_EXPEDITION_LOCKOUTS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterExpeditionLockoutsRepository {
@ -447,5 +447,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_EXPEDITION_LOCKOUTS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_INSPECT_MESSAGES_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_INSPECT_MESSAGES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterInspectMessagesRepository {
@ -388,5 +388,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_INSPECT_MESSAGES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_INSTANCE_SAFERETURNS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_INSTANCE_SAFERETURNS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterInstanceSafereturnsRepository {
@ -471,5 +471,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_INSTANCE_SAFERETURNS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_ITEM_RECAST_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_ITEM_RECAST_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterItemRecastRepository {
@ -400,5 +400,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_ITEM_RECAST_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_LANGUAGES_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_LANGUAGES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterLanguagesRepository {
@ -399,5 +399,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_LANGUAGES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_LEADERSHIP_ABILITIES_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_LEADERSHIP_ABILITIES_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterLeadershipAbilitiesRepository {
@ -400,5 +400,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_LEADERSHIP_ABILITIES_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_MATERIAL_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_MATERIAL_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterMaterialRepository {
@ -447,5 +447,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_MATERIAL_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_MEMMED_SPELLS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_MEMMED_SPELLS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterMemmedSpellsRepository {
@ -400,5 +400,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_MEMMED_SPELLS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_PARCELS_CONTAINERS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_PARCELS_CONTAINERS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterParcelsContainersRepository {
@ -507,5 +507,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_PARCELS_CONTAINERS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_PARCELS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_PARCELS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterParcelsRepository {
@ -543,5 +543,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_PARCELS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_PEQZONE_FLAGS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_PEQZONE_FLAGS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterPeqzoneFlagsRepository {
@ -388,5 +388,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_PEQZONE_FLAGS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_PET_BUFFS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_PET_BUFFS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterPetBuffsRepository {
@ -496,5 +496,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_PET_BUFFS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_PET_INFO_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_PET_INFO_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterPetInfoRepository {
@ -472,5 +472,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_PET_INFO_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_PET_INVENTORY_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_PET_INVENTORY_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterPetInventoryRepository {
@ -412,5 +412,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_PET_INVENTORY_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_PET_NAME_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_PET_NAME_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterPetNameRepository {
@ -388,5 +388,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_PET_NAME_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_POTIONBELT_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_POTIONBELT_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterPotionbeltRepository {
@ -412,5 +412,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_POTIONBELT_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_SKILLS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_SKILLS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterSkillsRepository {
@ -399,5 +399,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_SKILLS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_SPELLS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_SPELLS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterSpellsRepository {
@ -399,5 +399,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_SPELLS_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_STATS_RECORD_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_STATS_RECORD_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterStatsRecordRepository {
@ -1264,5 +1264,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_STATS_RECORD_REPOSITORY_H

View File

@ -6,14 +6,14 @@
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
* @docs https://docs.eqemu.dev/developer/repositories
*/
#ifndef EQEMU_BASE_CHARACTER_TASK_TIMERS_REPOSITORY_H
#define EQEMU_BASE_CHARACTER_TASK_TIMERS_REPOSITORY_H
#pragma once
#include "common/database.h"
#include "common/strings.h"
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseCharacterTaskTimersRepository {
@ -435,5 +435,3 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_CHARACTER_TASK_TIMERS_REPOSITORY_H

Some files were not shown because too many files have changed in this diff Show More