mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-27 10:32:26 +00:00
normalize includes: common/repositories
This commit is contained in:
parent
451eb0806a
commit
d306e139e8
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_AA_ABILITY_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_AA_ABILITY_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_aa_ability_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_aa_ability_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AaAbilityRepository: public BaseAaAbilityRepository {
|
class AaAbilityRepository: public BaseAaAbilityRepository {
|
||||||
public:
|
public:
|
||||||
@ -46,5 +46,3 @@ public:
|
|||||||
// Custom extended repository methods here
|
// Custom extended repository methods here
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_AA_ABILITY_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_AA_RANK_EFFECTS_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_AA_RANK_EFFECTS_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_aa_rank_effects_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_aa_rank_effects_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AaRankEffectsRepository: public BaseAaRankEffectsRepository {
|
class AaRankEffectsRepository: public BaseAaRankEffectsRepository {
|
||||||
public:
|
public:
|
||||||
@ -46,5 +46,3 @@ public:
|
|||||||
// Custom extended repository methods here
|
// Custom extended repository methods here
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_AA_RANK_EFFECTS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_AA_RANK_PREREQS_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_AA_RANK_PREREQS_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_aa_rank_prereqs_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_aa_rank_prereqs_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AaRankPrereqsRepository: public BaseAaRankPrereqsRepository {
|
class AaRankPrereqsRepository: public BaseAaRankPrereqsRepository {
|
||||||
public:
|
public:
|
||||||
@ -46,5 +46,3 @@ public:
|
|||||||
// Custom extended repository methods here
|
// Custom extended repository methods here
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_AA_RANK_PREREQS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_AA_RANKS_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_AA_RANKS_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_aa_ranks_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_aa_ranks_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AaRanksRepository: public BaseAaRanksRepository {
|
class AaRanksRepository: public BaseAaRanksRepository {
|
||||||
public:
|
public:
|
||||||
@ -46,5 +46,3 @@ public:
|
|||||||
// Custom extended repository methods here
|
// Custom extended repository methods here
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_AA_RANKS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_ACCOUNT_FLAGS_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_ACCOUNT_FLAGS_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_account_flags_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_account_flags_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AccountFlagsRepository: public BaseAccountFlagsRepository {
|
class AccountFlagsRepository: public BaseAccountFlagsRepository {
|
||||||
public:
|
public:
|
||||||
@ -74,5 +74,3 @@ public:
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_ACCOUNT_FLAGS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_ACCOUNT_IP_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_ACCOUNT_IP_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_account_ip_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_account_ip_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AccountIpRepository: public BaseAccountIpRepository {
|
class AccountIpRepository: public BaseAccountIpRepository {
|
||||||
public:
|
public:
|
||||||
@ -46,5 +46,3 @@ public:
|
|||||||
// Custom extended repository methods here
|
// Custom extended repository methods here
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_ACCOUNT_IP_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_ACCOUNT_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_ACCOUNT_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_account_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_account_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AccountRepository: public BaseAccountRepository {
|
class AccountRepository: public BaseAccountRepository {
|
||||||
public:
|
public:
|
||||||
@ -108,5 +108,3 @@ public:
|
|||||||
return AccountRepository::UpdateOne(db, e);
|
return AccountRepository::UpdateOne(db, e);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_ACCOUNT_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_ACCOUNT_REWARDS_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_ACCOUNT_REWARDS_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_account_rewards_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_account_rewards_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AccountRewardsRepository: public BaseAccountRewardsRepository {
|
class AccountRewardsRepository: public BaseAccountRewardsRepository {
|
||||||
public:
|
public:
|
||||||
@ -46,5 +46,3 @@ public:
|
|||||||
// Custom extended repository methods here
|
// Custom extended repository methods here
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_ACCOUNT_REWARDS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_ADVENTURE_DETAILS_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_ADVENTURE_DETAILS_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_adventure_details_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_adventure_details_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AdventureDetailsRepository: public BaseAdventureDetailsRepository {
|
class AdventureDetailsRepository: public BaseAdventureDetailsRepository {
|
||||||
public:
|
public:
|
||||||
@ -46,5 +46,3 @@ public:
|
|||||||
// Custom extended repository methods here
|
// Custom extended repository methods here
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_ADVENTURE_DETAILS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_ADVENTURE_MEMBERS_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_ADVENTURE_MEMBERS_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_adventure_members_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_adventure_members_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AdventureMembersRepository: public BaseAdventureMembersRepository {
|
class AdventureMembersRepository: public BaseAdventureMembersRepository {
|
||||||
public:
|
public:
|
||||||
@ -46,5 +46,3 @@ public:
|
|||||||
// Custom extended repository methods here
|
// Custom extended repository methods here
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_ADVENTURE_MEMBERS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_ADVENTURE_STATS_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_ADVENTURE_STATS_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_adventure_stats_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_adventure_stats_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AdventureStatsRepository: public BaseAdventureStatsRepository {
|
class AdventureStatsRepository: public BaseAdventureStatsRepository {
|
||||||
public:
|
public:
|
||||||
@ -104,5 +104,3 @@ public:
|
|||||||
db.QueryDatabase(query);
|
db.QueryDatabase(query);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_ADVENTURE_STATS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_ADVENTURE_TEMPLATE_ENTRY_FLAVOR_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_ADVENTURE_TEMPLATE_ENTRY_FLAVOR_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_adventure_template_entry_flavor_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_adventure_template_entry_flavor_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AdventureTemplateEntryFlavorRepository: public BaseAdventureTemplateEntryFlavorRepository {
|
class AdventureTemplateEntryFlavorRepository: public BaseAdventureTemplateEntryFlavorRepository {
|
||||||
public:
|
public:
|
||||||
@ -46,5 +46,3 @@ public:
|
|||||||
// Custom extended repository methods here
|
// Custom extended repository methods here
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_ADVENTURE_TEMPLATE_ENTRY_FLAVOR_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_ADVENTURE_TEMPLATE_ENTRY_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_ADVENTURE_TEMPLATE_ENTRY_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_adventure_template_entry_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_adventure_template_entry_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AdventureTemplateEntryRepository: public BaseAdventureTemplateEntryRepository {
|
class AdventureTemplateEntryRepository: public BaseAdventureTemplateEntryRepository {
|
||||||
public:
|
public:
|
||||||
@ -46,5 +46,3 @@ public:
|
|||||||
// Custom extended repository methods here
|
// Custom extended repository methods here
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_ADVENTURE_TEMPLATE_ENTRY_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_ADVENTURE_TEMPLATE_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_ADVENTURE_TEMPLATE_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_adventure_template_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_adventure_template_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AdventureTemplateRepository: public BaseAdventureTemplateRepository {
|
class AdventureTemplateRepository: public BaseAdventureTemplateRepository {
|
||||||
public:
|
public:
|
||||||
@ -46,5 +46,3 @@ public:
|
|||||||
// Custom extended repository methods here
|
// Custom extended repository methods here
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_ADVENTURE_TEMPLATE_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_ALTERNATE_CURRENCY_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_ALTERNATE_CURRENCY_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_alternate_currency_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_alternate_currency_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AlternateCurrencyRepository: public BaseAlternateCurrencyRepository {
|
class AlternateCurrencyRepository: public BaseAlternateCurrencyRepository {
|
||||||
public:
|
public:
|
||||||
@ -46,5 +46,3 @@ public:
|
|||||||
// Custom extended repository methods here
|
// Custom extended repository methods here
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_ALTERNATE_CURRENCY_REPOSITORY_H
|
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#ifndef EQEMU_AURAS_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_AURAS_REPOSITORY_H
|
|
||||||
|
|
||||||
#include "../database.h"
|
#include "common/repositories/base/base_auras_repository.h"
|
||||||
#include "../strings.h"
|
|
||||||
#include "base/base_auras_repository.h"
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
class AurasRepository: public BaseAurasRepository {
|
class AurasRepository: public BaseAurasRepository {
|
||||||
public:
|
public:
|
||||||
@ -46,5 +46,3 @@ public:
|
|||||||
// Custom extended repository methods here
|
// Custom extended repository methods here
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_AURAS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_AA_ABILITY_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAaAbilityRepository {
|
class BaseAaAbilityRepository {
|
||||||
@ -544,5 +544,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_AA_ABILITY_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_AA_RANK_EFFECTS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAaRankEffectsRepository {
|
class BaseAaRankEffectsRepository {
|
||||||
@ -424,5 +424,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_AA_RANK_EFFECTS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_AA_RANK_PREREQS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAaRankPrereqsRepository {
|
class BaseAaRankPrereqsRepository {
|
||||||
@ -400,5 +400,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_AA_RANK_PREREQS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_AA_RANKS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAaRanksRepository {
|
class BaseAaRanksRepository {
|
||||||
@ -520,5 +520,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_AA_RANKS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_ACCOUNT_FLAGS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAccountFlagsRepository {
|
class BaseAccountFlagsRepository {
|
||||||
@ -400,5 +400,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_ACCOUNT_FLAGS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_ACCOUNT_IP_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAccountIpRepository {
|
class BaseAccountIpRepository {
|
||||||
@ -412,5 +412,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_ACCOUNT_IP_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_ACCOUNT_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAccountRepository {
|
class BaseAccountRepository {
|
||||||
@ -663,5 +663,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_ACCOUNT_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_ACCOUNT_REWARDS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAccountRewardsRepository {
|
class BaseAccountRewardsRepository {
|
||||||
@ -400,5 +400,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_ACCOUNT_REWARDS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_ADVENTURE_DETAILS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAdventureDetailsRepository {
|
class BaseAdventureDetailsRepository {
|
||||||
@ -471,5 +471,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_ADVENTURE_DETAILS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_ADVENTURE_MEMBERS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAdventureMembersRepository {
|
class BaseAdventureMembersRepository {
|
||||||
@ -388,5 +388,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_ADVENTURE_MEMBERS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_ADVENTURE_STATS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAdventureStatsRepository {
|
class BaseAdventureStatsRepository {
|
||||||
@ -496,5 +496,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_ADVENTURE_STATS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_ADVENTURE_TEMPLATE_ENTRY_FLAVOR_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAdventureTemplateEntryFlavorRepository {
|
class BaseAdventureTemplateEntryFlavorRepository {
|
||||||
@ -388,5 +388,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_ADVENTURE_TEMPLATE_ENTRY_FLAVOR_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_ADVENTURE_TEMPLATE_ENTRY_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAdventureTemplateEntryRepository {
|
class BaseAdventureTemplateEntryRepository {
|
||||||
@ -388,5 +388,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_ADVENTURE_TEMPLATE_ENTRY_REPOSITORY_H
|
|
||||||
|
|||||||
@ -9,11 +9,11 @@
|
|||||||
* @docs https://docs.eqemu.io/developer/repositories
|
* @docs https://docs.eqemu.io/developer/repositories
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef EQEMU_BASE_ADVENTURE_TEMPLATE_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_BASE_ADVENTURE_TEMPLATE_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAdventureTemplateRepository {
|
class BaseAdventureTemplateRepository {
|
||||||
@ -757,5 +757,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_ADVENTURE_TEMPLATE_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_ALTERNATE_CURRENCY_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAlternateCurrencyRepository {
|
class BaseAlternateCurrencyRepository {
|
||||||
@ -388,5 +388,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_ALTERNATE_CURRENCY_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_AURAS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseAurasRepository {
|
class BaseAurasRepository {
|
||||||
@ -496,5 +496,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_AURAS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BASE_DATA_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBaseDataRepository {
|
class BaseBaseDataRepository {
|
||||||
@ -484,5 +484,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BASE_DATA_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BLOCKED_SPELLS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBlockedSpellsRepository {
|
class BaseBlockedSpellsRepository {
|
||||||
@ -555,5 +555,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BLOCKED_SPELLS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOOKS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBooksRepository {
|
class BaseBooksRepository {
|
||||||
@ -411,5 +411,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOOKS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_BLOCKED_BUFFS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotBlockedBuffsRepository {
|
class BaseBotBlockedBuffsRepository {
|
||||||
@ -412,5 +412,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_BLOCKED_BUFFS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_BUFFS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotBuffsRepository {
|
class BaseBotBuffsRepository {
|
||||||
@ -603,5 +603,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_BUFFS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,16 +6,15 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_CREATE_COMBINATIONS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotCreateCombinationsRepository {
|
class BaseBotCreateCombinationsRepository {
|
||||||
public:
|
public:
|
||||||
struct BotCreateCombinations {
|
struct BotCreateCombinations {
|
||||||
@ -388,5 +387,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_CREATE_COMBINATIONS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_DATA_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotDataRepository {
|
class BaseBotDataRepository {
|
||||||
@ -915,5 +915,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_DATA_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_GROUP_MEMBERS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotGroupMembersRepository {
|
class BaseBotGroupMembersRepository {
|
||||||
@ -338,5 +338,3 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_GROUP_MEMBERS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_GROUPS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotGroupsRepository {
|
class BaseBotGroupsRepository {
|
||||||
@ -348,5 +348,3 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_GROUPS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -9,11 +9,11 @@
|
|||||||
* @docs https://eqemu.gitbook.io/server/in-development/developer-area/repositories
|
* @docs https://eqemu.gitbook.io/server/in-development/developer-area/repositories
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef EQEMU_BASE_BOT_GUILD_MEMBERS_REPOSITORY_H
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_GUILD_MEMBERS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotGuildMembersRepository {
|
class BaseBotGuildMembersRepository {
|
||||||
@ -399,5 +399,3 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_GUILD_MEMBERS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_HEAL_ROTATION_MEMBERS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotHealRotationMembersRepository {
|
class BaseBotHealRotationMembersRepository {
|
||||||
@ -399,5 +399,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_HEAL_ROTATION_MEMBERS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_HEAL_ROTATION_TARGETS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotHealRotationTargetsRepository {
|
class BaseBotHealRotationTargetsRepository {
|
||||||
@ -399,5 +399,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_HEAL_ROTATION_TARGETS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_HEAL_ROTATIONS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotHealRotationsRepository {
|
class BaseBotHealRotationsRepository {
|
||||||
@ -525,5 +525,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_HEAL_ROTATIONS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,16 +6,15 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_INSPECT_MESSAGES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotInspectMessagesRepository {
|
class BaseBotInspectMessagesRepository {
|
||||||
public:
|
public:
|
||||||
struct BotInspectMessages {
|
struct BotInspectMessages {
|
||||||
@ -388,5 +387,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_INSPECT_MESSAGES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_INVENTORIES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotInventoriesRepository {
|
class BaseBotInventoriesRepository {
|
||||||
@ -567,5 +567,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_INVENTORIES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_OWNER_OPTIONS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotOwnerOptionsRepository {
|
class BaseBotOwnerOptionsRepository {
|
||||||
@ -400,5 +400,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_OWNER_OPTIONS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_PET_BUFFS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotPetBuffsRepository {
|
class BaseBotPetBuffsRepository {
|
||||||
@ -423,5 +423,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_PET_BUFFS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_PET_INVENTORIES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotPetInventoriesRepository {
|
class BaseBotPetInventoriesRepository {
|
||||||
@ -399,5 +399,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_PET_INVENTORIES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_PETS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotPetsRepository {
|
class BaseBotPetsRepository {
|
||||||
@ -435,5 +435,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_PETS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_SETTINGS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotSettingsRepository {
|
class BaseBotSettingsRepository {
|
||||||
@ -460,5 +460,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_SETTINGS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_SPELL_CASTING_CHANCES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotSpellCastingChancesRepository {
|
class BaseBotSpellCastingChancesRepository {
|
||||||
@ -603,5 +603,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_SPELL_CASTING_CHANCES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_SPELL_SETTINGS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotSpellSettingsRepository {
|
class BaseBotSpellSettingsRepository {
|
||||||
@ -447,5 +447,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_SPELL_SETTINGS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_SPELLS_ENTRIES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotSpellsEntriesRepository {
|
class BaseBotSpellsEntriesRepository {
|
||||||
@ -543,5 +543,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_SPELLS_ENTRIES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_STANCES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotStancesRepository {
|
class BaseBotStancesRepository {
|
||||||
@ -388,5 +388,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_STANCES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_STARTING_ITEMS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotStartingItemsRepository {
|
class BaseBotStartingItemsRepository {
|
||||||
@ -567,5 +567,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_STARTING_ITEMS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BOT_TIMERS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBotTimersRepository {
|
class BaseBotTimersRepository {
|
||||||
@ -472,5 +472,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BOT_TIMERS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BUG_REPORTS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBugReportsRepository {
|
class BaseBugReportsRepository {
|
||||||
@ -747,5 +747,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BUG_REPORTS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BUGS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBugsRepository {
|
class BaseBugsRepository {
|
||||||
@ -519,5 +519,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BUGS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BUYER_BUY_LINES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBuyerBuyLinesRepository {
|
class BaseBuyerBuyLinesRepository {
|
||||||
@ -471,5 +471,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BUYER_BUY_LINES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BUYER_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBuyerRepository {
|
class BaseBuyerRepository {
|
||||||
@ -459,5 +459,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BUYER_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_BUYER_TRADE_ITEMS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseBuyerTradeItemsRepository {
|
class BaseBuyerTradeItemsRepository {
|
||||||
@ -435,5 +435,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_BUYER_TRADE_ITEMS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHAR_CREATE_COMBINATIONS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharCreateCombinationsRepository {
|
class BaseCharCreateCombinationsRepository {
|
||||||
@ -436,5 +436,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHAR_CREATE_COMBINATIONS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHAR_CREATE_POINT_ALLOCATIONS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharCreatePointAllocationsRepository {
|
class BaseCharCreatePointAllocationsRepository {
|
||||||
@ -544,5 +544,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHAR_CREATE_POINT_ALLOCATIONS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHAR_RECIPE_LIST_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharRecipeListRepository {
|
class BaseCharRecipeListRepository {
|
||||||
@ -400,5 +400,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHAR_RECIPE_LIST_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_ACTIVITIES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterActivitiesRepository {
|
class BaseCharacterActivitiesRepository {
|
||||||
@ -424,5 +424,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_ACTIVITIES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_ALT_CURRENCY_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterAltCurrencyRepository {
|
class BaseCharacterAltCurrencyRepository {
|
||||||
@ -400,5 +400,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_ALT_CURRENCY_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_ALTERNATE_ABILITIES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterAlternateAbilitiesRepository {
|
class BaseCharacterAlternateAbilitiesRepository {
|
||||||
@ -412,5 +412,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_ALTERNATE_ABILITIES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_AURAS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterAurasRepository {
|
class BaseCharacterAurasRepository {
|
||||||
@ -400,5 +400,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_AURAS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_BANDOLIER_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterBandolierRepository {
|
class BaseCharacterBandolierRepository {
|
||||||
@ -436,5 +436,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_BANDOLIER_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_BIND_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterBindRepository {
|
class BaseCharacterBindRepository {
|
||||||
@ -459,5 +459,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_BIND_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_BUFFS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterBuffsRepository {
|
class BaseCharacterBuffsRepository {
|
||||||
@ -568,5 +568,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_BUFFS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_CORPSE_ITEMS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterCorpseItemsRepository {
|
class BaseCharacterCorpseItemsRepository {
|
||||||
@ -544,5 +544,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_CORPSE_ITEMS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_CORPSES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterCorpsesRepository {
|
class BaseCharacterCorpsesRepository {
|
||||||
@ -987,5 +987,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_CORPSES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_CURRENCY_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterCurrencyRepository {
|
class BaseCharacterCurrencyRepository {
|
||||||
@ -568,5 +568,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_CURRENCY_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_DATA_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterDataRepository {
|
class BaseCharacterDataRepository {
|
||||||
@ -1635,5 +1635,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_DATA_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_DISCIPLINES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterDisciplinesRepository {
|
class BaseCharacterDisciplinesRepository {
|
||||||
@ -400,5 +400,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_DISCIPLINES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_EVOLVING_ITEMS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterEvolvingItemsRepository {
|
class BaseCharacterEvolvingItemsRepository {
|
||||||
@ -471,5 +471,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_EVOLVING_ITEMS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_EXP_MODIFIERS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterExpModifiersRepository {
|
class BaseCharacterExpModifiersRepository {
|
||||||
@ -424,5 +424,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_EXP_MODIFIERS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_EXPEDITION_LOCKOUTS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterExpeditionLockoutsRepository {
|
class BaseCharacterExpeditionLockoutsRepository {
|
||||||
@ -447,5 +447,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_EXPEDITION_LOCKOUTS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_INSPECT_MESSAGES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterInspectMessagesRepository {
|
class BaseCharacterInspectMessagesRepository {
|
||||||
@ -388,5 +388,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_INSPECT_MESSAGES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_INSTANCE_SAFERETURNS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterInstanceSafereturnsRepository {
|
class BaseCharacterInstanceSafereturnsRepository {
|
||||||
@ -471,5 +471,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_INSTANCE_SAFERETURNS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_ITEM_RECAST_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterItemRecastRepository {
|
class BaseCharacterItemRecastRepository {
|
||||||
@ -400,5 +400,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_ITEM_RECAST_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_LANGUAGES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterLanguagesRepository {
|
class BaseCharacterLanguagesRepository {
|
||||||
@ -399,5 +399,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_LANGUAGES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_LEADERSHIP_ABILITIES_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterLeadershipAbilitiesRepository {
|
class BaseCharacterLeadershipAbilitiesRepository {
|
||||||
@ -400,5 +400,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_LEADERSHIP_ABILITIES_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_MATERIAL_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterMaterialRepository {
|
class BaseCharacterMaterialRepository {
|
||||||
@ -447,5 +447,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_MATERIAL_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_MEMMED_SPELLS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterMemmedSpellsRepository {
|
class BaseCharacterMemmedSpellsRepository {
|
||||||
@ -400,5 +400,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_MEMMED_SPELLS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_PARCELS_CONTAINERS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterParcelsContainersRepository {
|
class BaseCharacterParcelsContainersRepository {
|
||||||
@ -507,5 +507,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_PARCELS_CONTAINERS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_PARCELS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterParcelsRepository {
|
class BaseCharacterParcelsRepository {
|
||||||
@ -543,5 +543,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_PARCELS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_PEQZONE_FLAGS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterPeqzoneFlagsRepository {
|
class BaseCharacterPeqzoneFlagsRepository {
|
||||||
@ -388,5 +388,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_PEQZONE_FLAGS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_PET_BUFFS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterPetBuffsRepository {
|
class BaseCharacterPetBuffsRepository {
|
||||||
@ -496,5 +496,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_PET_BUFFS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_PET_INFO_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterPetInfoRepository {
|
class BaseCharacterPetInfoRepository {
|
||||||
@ -472,5 +472,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_PET_INFO_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_PET_INVENTORY_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterPetInventoryRepository {
|
class BaseCharacterPetInventoryRepository {
|
||||||
@ -412,5 +412,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_PET_INVENTORY_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_PET_NAME_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterPetNameRepository {
|
class BaseCharacterPetNameRepository {
|
||||||
@ -388,5 +388,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_PET_NAME_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_POTIONBELT_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterPotionbeltRepository {
|
class BaseCharacterPotionbeltRepository {
|
||||||
@ -412,5 +412,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_POTIONBELT_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_SKILLS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterSkillsRepository {
|
class BaseCharacterSkillsRepository {
|
||||||
@ -399,5 +399,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_SKILLS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_SPELLS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterSpellsRepository {
|
class BaseCharacterSpellsRepository {
|
||||||
@ -399,5 +399,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_SPELLS_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_STATS_RECORD_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterStatsRecordRepository {
|
class BaseCharacterStatsRecordRepository {
|
||||||
@ -1264,5 +1264,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
return (results.Success() ? results.RowsAffected() : 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //EQEMU_BASE_CHARACTER_STATS_RECORD_REPOSITORY_H
|
|
||||||
|
|||||||
@ -6,14 +6,14 @@
|
|||||||
* Any modifications to base repositories are to be made by the generator only
|
* Any modifications to base repositories are to be made by the generator only
|
||||||
*
|
*
|
||||||
* @generator ./utils/scripts/generators/repository-generator.pl
|
* @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
|
#pragma once
|
||||||
#define EQEMU_BASE_CHARACTER_TASK_TIMERS_REPOSITORY_H
|
|
||||||
|
#include "common/database.h"
|
||||||
|
#include "common/strings.h"
|
||||||
|
|
||||||
#include "../../database.h"
|
|
||||||
#include "../../strings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
class BaseCharacterTaskTimersRepository {
|
class BaseCharacterTaskTimersRepository {
|
||||||
@ -435,5 +435,3 @@ public:
|
|||||||
return (results.Success() ? results.RowsAffected() : 0);
|
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
Loading…
x
Reference in New Issue
Block a user