mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
PubUtilLib Part IV
This commit is contained in:
@ -0,0 +1,39 @@
|
||||
include_directories("../../CoreLib")
|
||||
include_directories("../../NucleusLib/inc")
|
||||
include_directories("../../NucleusLib")
|
||||
include_directories("../../PubUtilLib")
|
||||
|
||||
set(plResMgr_SOURCES
|
||||
plBSDiffBuffer.cpp
|
||||
plDiffBuffer.cpp
|
||||
plKeyFinder.cpp
|
||||
plLocalization.cpp
|
||||
plPageInfo.cpp
|
||||
plRegistryHelpers.cpp
|
||||
plRegistryKeyList.cpp
|
||||
plRegistryNode.cpp
|
||||
plResManager.cpp
|
||||
plResManagerHelper.cpp
|
||||
plVersion.cpp
|
||||
)
|
||||
|
||||
set(plResMgr_HEADERS
|
||||
plBSDiffBuffer.h
|
||||
plDiffBuffer.h
|
||||
plKeyFinder.h
|
||||
plLocalization.h
|
||||
plPageInfo.h
|
||||
plRegistryHelpers.h
|
||||
plRegistryKeyList.h
|
||||
plRegistryNode.h
|
||||
plResManager.h
|
||||
plResManagerHelper.h
|
||||
plResMgrCreatable.h
|
||||
plResMgrSettings.h
|
||||
plVersion.h
|
||||
)
|
||||
|
||||
add_library(plResMgr STATIC ${plResMgr_SOURCES} ${plResMgr_HEADERS})
|
||||
|
||||
source_group("Source Files" FILES ${plResMgr_SOURCES})
|
||||
source_group("Header Files" FILES ${plResMgr_HEADERS})
|
@ -35,7 +35,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "plRegistryNode.h"
|
||||
#include "plRegistryKeyList.h"
|
||||
#include "plPageInfo.h"
|
||||
#include "../pnFactory/plFactory.h"
|
||||
#include "pnFactory/plFactory.h"
|
||||
#include "hsUtils.h"
|
||||
#include "plCreatableIndex.h"
|
||||
|
||||
|
@ -48,8 +48,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//----------------------------
|
||||
|
||||
#include "hsTypes.h"
|
||||
#include "../pnKeyedObject/plKey.h"
|
||||
#include "../pnKeyedObject/plUoid.h"
|
||||
#include "pnKeyedObject/plKey.h"
|
||||
#include "pnKeyedObject/plUoid.h"
|
||||
#include "hsStlUtils.h"
|
||||
#include <string>
|
||||
|
||||
|
@ -25,7 +25,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
*==LICENSE==*/
|
||||
#include "hsTypes.h"
|
||||
#include "plLocalization.h"
|
||||
#include "../plFile/plFileUtils.h"
|
||||
#include "plFile/plFileUtils.h"
|
||||
#include "hsUtils.h"
|
||||
|
||||
plLocalization::Language plLocalization::fLanguage = plLocalization::kEnglish;
|
||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "plPageInfo.h"
|
||||
#include "hsUtils.h"
|
||||
#include "hsStream.h"
|
||||
#include "../pnKeyedObject/plUoid.h"
|
||||
#include "pnKeyedObject/plUoid.h"
|
||||
#include "plVersion.h"
|
||||
|
||||
static UInt32 sCurrPageInfoVersion = 6;
|
||||
|
@ -32,7 +32,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#define _plPageInfo_h
|
||||
|
||||
#include "hsTypes.h"
|
||||
#include "../pnKeyedObject/plUoid.h"
|
||||
#include "pnKeyedObject/plUoid.h"
|
||||
#include <vector>
|
||||
|
||||
class hsStream;
|
||||
|
@ -38,7 +38,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
|
||||
#include "hsTypes.h"
|
||||
#include "hsTemplates.h"
|
||||
#include "../pnKeyedObject/plKey.h"
|
||||
#include "pnKeyedObject/plKey.h"
|
||||
|
||||
class plKey;
|
||||
class plRegistryPageNode;
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#define plRegistryKeyList_h_inc
|
||||
|
||||
#include "hsTypes.h"
|
||||
#include "../pnKeyedObject/plKeyImp.h"
|
||||
#include "pnKeyedObject/plKeyImp.h"
|
||||
#include <vector>
|
||||
#include <set>
|
||||
|
||||
|
@ -27,10 +27,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "plRegistryKeyList.h"
|
||||
#include "plRegistryHelpers.h"
|
||||
|
||||
#include "../pnKeyedObject/plKeyImp.h"
|
||||
#include "../plStatusLog/plStatusLog.h"
|
||||
#include "../pnFactory/plFactory.h"
|
||||
#include "../plFile/plFileUtils.h"
|
||||
#include "pnKeyedObject/plKeyImp.h"
|
||||
#include "plStatusLog/plStatusLog.h"
|
||||
#include "pnFactory/plFactory.h"
|
||||
#include "plFile/plFileUtils.h"
|
||||
#include "hsStlUtils.h"
|
||||
|
||||
#include "plVersion.h"
|
||||
|
@ -31,24 +31,24 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsSTLStream.h"
|
||||
|
||||
#include "hsTimer.h"
|
||||
#include "../pnTimer/plTimerCallbackManager.h"
|
||||
#include "pnTimer/plTimerCallbackManager.h"
|
||||
#include "hsStlUtils.h"
|
||||
|
||||
#include "../plScene/plSceneNode.h"
|
||||
#include "../pnKeyedObject/hsKeyedObject.h"
|
||||
#include "../pnKeyedObject/plFixedKey.h"
|
||||
#include "../pnKeyedObject/plKeyImp.h"
|
||||
#include "../pnDispatch/plDispatch.h"
|
||||
#include "../plStatusLog/plStatusLog.h"
|
||||
#include "../pnMessage/plRefMsg.h"
|
||||
#include "../pnMessage/plObjRefMsg.h"
|
||||
#include "../plMessage/plAgeLoadedMsg.h"
|
||||
#include "../pnMessage/plClientMsg.h"
|
||||
#include "../plFile/hsFiles.h"
|
||||
#include "../plFile/plFileUtils.h"
|
||||
#include "../pnFactory/plCreator.h"
|
||||
#include "../pnNetCommon/plSynchedObject.h"
|
||||
#include "../pnNetCommon/plNetApp.h"
|
||||
#include "plScene/plSceneNode.h"
|
||||
#include "pnKeyedObject/hsKeyedObject.h"
|
||||
#include "pnKeyedObject/plFixedKey.h"
|
||||
#include "pnKeyedObject/plKeyImp.h"
|
||||
#include "pnDispatch/plDispatch.h"
|
||||
#include "plStatusLog/plStatusLog.h"
|
||||
#include "pnMessage/plRefMsg.h"
|
||||
#include "pnMessage/plObjRefMsg.h"
|
||||
#include "plMessage/plAgeLoadedMsg.h"
|
||||
#include "pnMessage/plClientMsg.h"
|
||||
#include "plFile/hsFiles.h"
|
||||
#include "plFile/plFileUtils.h"
|
||||
#include "pnFactory/plCreator.h"
|
||||
#include "pnNetCommon/plSynchedObject.h"
|
||||
#include "pnNetCommon/plNetApp.h"
|
||||
|
||||
hsBool gDataServerLocal = false;
|
||||
|
||||
|
@ -42,9 +42,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//#include "plRegistry.h"
|
||||
#include "plResMgrSettings.h"
|
||||
|
||||
#include "../pnKeyedObject/plFixedKey.h"
|
||||
#include "../plMessage/plResMgrHelperMsg.h"
|
||||
#include "../plStatusLog/plStatusLog.h"
|
||||
#include "pnKeyedObject/plFixedKey.h"
|
||||
#include "plMessage/plResMgrHelperMsg.h"
|
||||
#include "plStatusLog/plStatusLog.h"
|
||||
#include "hsTimer.h"
|
||||
|
||||
#ifdef MCN_RESMGR_DEBUGGING
|
||||
@ -52,13 +52,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
static const int kLogSize = 40;
|
||||
static const float kUpdateDelay = 0.5f;
|
||||
|
||||
#include "../plInputCore/plInputInterface.h"
|
||||
#include "../plInputCore/plInputDevice.h"
|
||||
#include "../plInputCore/plInputInterfaceMgr.h"
|
||||
#include "../pnInputCore/plInputMap.h"
|
||||
#include "../plMessage/plInputEventMsg.h"
|
||||
#include "../plMessage/plInputIfaceMgrMsg.h"
|
||||
#include "../pnKeyedObject/plKeyImp.h"
|
||||
#include "plInputCore/plInputInterface.h"
|
||||
#include "plInputCore/plInputDevice.h"
|
||||
#include "plInputCore/plInputInterfaceMgr.h"
|
||||
#include "pnInputCore/plInputMap.h"
|
||||
#include "plMessage/plInputEventMsg.h"
|
||||
#include "plMessage/plInputIfaceMgrMsg.h"
|
||||
#include "pnKeyedObject/plKeyImp.h"
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -40,7 +40,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsTypes.h"
|
||||
#include "hsTemplates.h"
|
||||
#include "plRegistryHelpers.h"
|
||||
#include "../pnKeyedObject/hsKeyedObject.h"
|
||||
#include "pnKeyedObject/hsKeyedObject.h"
|
||||
|
||||
// Defined as a project setting so we can do this right
|
||||
//#define MCN_RESMGR_DEBUGGING
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plResMgrCreatable_inc
|
||||
#define plResMgrCreatable_inc
|
||||
|
||||
#include "../pnFactory/plCreator.h"
|
||||
#include "pnFactory/plCreator.h"
|
||||
|
||||
|
||||
#include "plResManagerHelper.h"
|
||||
|
@ -24,7 +24,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "plVersion.h"
|
||||
#include "../pnFactory/plFactory.h"
|
||||
#include "pnFactory/plFactory.h"
|
||||
#include <vector>
|
||||
|
||||
#include "plCreatableIndex.h"
|
||||
|
Reference in New Issue
Block a user