Moved namespace ItemField from item_instance.h to shareddb.cpp

This commit is contained in:
Uleat 2016-10-17 01:03:40 -04:00
parent 9f01d14c64
commit 3438247904
3 changed files with 14 additions and 12 deletions

View File

@ -1,5 +1,8 @@
EQEMu Changelog (Started on Sept 24, 2003 15:50)
-------------------------------------------------------
== 10/17/2016 ==
Uleat: Moved namespace ItemField from item_instance.h to shareddb.cpp - the only place it is used
== 10/16/2016 ==
Uleat: Renamed struct EQEmu::ItemBase to EQEmu::ItemData and class ItemInst to EQEmu::ItemInstance
Uleat: Added class EQEmu::InventorySlot. Re-attached pertinent inventory token references to EQDictionary

View File

@ -39,18 +39,6 @@ class EvolveInfo; // Stores information about an evolving item family
#include <map>
namespace ItemField
{
enum
{
source = 0,
#define F(x) x,
#include "item_fieldlist.h"
#undef F
updated
};
};
// Specifies usage type for item inside EQEmu::ItemInstance
enum ItemInstTypes
{

View File

@ -38,6 +38,17 @@
#include "string_util.h"
#include "eqemu_config.h"
namespace ItemField
{
enum {
source = 0,
#define F(x) x,
#include "item_fieldlist.h"
#undef F
updated
};
}
SharedDatabase::SharedDatabase()
: Database()
{