Browse Source

PCH-ize plMessage

Adam Johnson 11 years ago
parent
commit
86c77006c8
  1. 3
      Sources/Plasma/PubUtilLib/plMessage/CMakeLists.txt
  2. 2
      Sources/Plasma/PubUtilLib/plMessage/Pch.cpp
  3. 25
      Sources/Plasma/PubUtilLib/plMessage/Pch.h
  4. 5
      Sources/Plasma/PubUtilLib/plMessage/plAIMsg.cpp
  5. 6
      Sources/Plasma/PubUtilLib/plMessage/plAccountUpdateMsg.cpp
  6. 4
      Sources/Plasma/PubUtilLib/plMessage/plAnimCmdMsg.cpp
  7. 8
      Sources/Plasma/PubUtilLib/plMessage/plAvCoopMsg.cpp
  8. 9
      Sources/Plasma/PubUtilLib/plMessage/plAvatarMsg.cpp
  9. 4
      Sources/Plasma/PubUtilLib/plMessage/plBulletMsg.cpp
  10. 8
      Sources/Plasma/PubUtilLib/plMessage/plCCRMsg.cpp
  11. 2
      Sources/Plasma/PubUtilLib/plMessage/plCaptureRenderMsg.cpp
  12. 7
      Sources/Plasma/PubUtilLib/plMessage/plClimbMsg.cpp
  13. 6
      Sources/Plasma/PubUtilLib/plMessage/plDynaDecalEnableMsg.cpp
  14. 5
      Sources/Plasma/PubUtilLib/plMessage/plDynamicEnvMapMsg.cpp
  15. 6
      Sources/Plasma/PubUtilLib/plMessage/plDynamicTextMsg.cpp
  16. 6
      Sources/Plasma/PubUtilLib/plMessage/plInputEventMsg.cpp
  17. 10
      Sources/Plasma/PubUtilLib/plMessage/plInputIfaceMgrMsg.cpp
  18. 1
      Sources/Plasma/PubUtilLib/plMessage/plLOSHitMsg.cpp
  19. 5
      Sources/Plasma/PubUtilLib/plMessage/plLOSRequestMsg.cpp
  20. 4
      Sources/Plasma/PubUtilLib/plMessage/plLayRefMsg.cpp
  21. 9
      Sources/Plasma/PubUtilLib/plMessage/plLinkToAgeMsg.cpp
  22. 11
      Sources/Plasma/PubUtilLib/plMessage/plListenerMsg.cpp
  23. 3
      Sources/Plasma/PubUtilLib/plMessage/plListenerMsg.h
  24. 12
      Sources/Plasma/PubUtilLib/plMessage/plLoadAgeMsg.cpp
  25. 7
      Sources/Plasma/PubUtilLib/plMessage/plLoadAvatarMsg.cpp
  26. 11
      Sources/Plasma/PubUtilLib/plMessage/plLoadCloneMsg.cpp
  27. 5
      Sources/Plasma/PubUtilLib/plMessage/plMatrixUpdateMsg.cpp
  28. 5
      Sources/Plasma/PubUtilLib/plMessage/plMultistageMsg.cpp
  29. 7
      Sources/Plasma/PubUtilLib/plMessage/plNetVoiceListMsg.cpp
  30. 6
      Sources/Plasma/PubUtilLib/plMessage/plOneShotCallbacks.cpp
  31. 3
      Sources/Plasma/PubUtilLib/plMessage/plOneShotMsg.cpp
  32. 9
      Sources/Plasma/PubUtilLib/plMessage/plRenderRequestMsg.cpp
  33. 6
      Sources/Plasma/PubUtilLib/plMessage/plRideAnimatedPhysMsg.cpp
  34. 4
      Sources/Plasma/PubUtilLib/plMessage/plRippleShapeMsg.cpp
  35. 5
      Sources/Plasma/PubUtilLib/plMessage/plSimStateMsg.cpp
  36. 7
      Sources/Plasma/PubUtilLib/plMessage/plSwimMsg.cpp
  37. 5
      Sources/Plasma/PubUtilLib/plMessage/plSynchEnableMsg.cpp
  38. 3
      Sources/Plasma/PubUtilLib/plMessage/plTransitionMsg.cpp
  39. 4
      Sources/Plasma/PubUtilLib/plMessage/plVaultNotifyMsg.cpp

3
Sources/Plasma/PubUtilLib/plMessage/CMakeLists.txt

@ -13,7 +13,6 @@ set(plMessage_SOURCES
plCaptureRenderMsg.cpp
plCCRMsg.cpp
plClimbMsg.cpp
plCollideMsg.cpp
plDynaDecalEnableMsg.cpp
plDynamicEnvMapMsg.cpp
plDynamicTextMsg.cpp
@ -29,7 +28,6 @@ set(plMessage_SOURCES
plLOSRequestMsg.cpp
plMatrixUpdateMsg.cpp
plMultistageMsg.cpp
plNetCommMsgs.cpp
plNetVoiceListMsg.cpp
plOneShotCallbacks.cpp
plOneShotMsg.cpp
@ -119,6 +117,7 @@ set(plMessage_HEADERS
plVaultNotifyMsg.h
)
use_precompiled_header(Pch.h Pch.cpp plMessage_HEADERS plMessage_SOURCES)
add_library(plMessage STATIC ${plMessage_SOURCES} ${plMessage_HEADERS})
source_group("Source Files" FILES ${plMessage_SOURCES})

2
Sources/Plasma/PubUtilLib/plMessage/plCollideMsg.cpp → Sources/Plasma/PubUtilLib/plMessage/Pch.cpp

@ -39,3 +39,5 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "Pch.h"

25
Sources/Plasma/PubUtilLib/plMessage/plNetCommMsgs.cpp → Sources/Plasma/PubUtilLib/plMessage/Pch.h

@ -39,10 +39,23 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
/*****************************************************************************
*
* $/Plasma20/Sources/Plasma/PubUtilLib/plMessage/plNetCommMsgs.cpp
*
***/
#include "plNetCommMsgs.h"
// Plasma CoreLib
#include "HeadSpin.h"
#include "hsBitVector.h"
#include "hsColorRGBA.h"
#include "hsFastMath.h"
#include "hsGeometry3.h"
#include "hsStream.h"
#include "plString.h"
#include "hsTemplates.h"
// Plasma Nucleus
#include "plgDispatch.h"
#include "hsResMgr.h"
#include "pnKeyedObject/plFixedKey.h"
#include "pnKeyedObject/plKey.h"
#include "pnKeyedObject/plUoid.h"
#include "pnMessage/plMessage.h"
#include "pnNetCommon/plNetApp.h"

5
Sources/Plasma/PubUtilLib/plMessage/plAIMsg.cpp

@ -42,9 +42,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef SERVER // we use stuff the server doesn't link with
#ifndef NO_AV_MSGS
#include "plAIMsg.h"
#include "hsStream.h"
#pragma hdrstop
#include "plAIMsg.h"
#include "plAvatar/plArmatureMod.h"

6
Sources/Plasma/PubUtilLib/plMessage/plAccountUpdateMsg.cpp

@ -39,8 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "plAccountUpdateMsg.h"
#include "hsStream.h"
#pragma hdrstop
#include "plAccountUpdateMsg.h"
void plAccountUpdateMsg::Read(hsStream* stream, hsResMgr* mgr)
{

4
Sources/Plasma/PubUtilLib/plMessage/plAnimCmdMsg.cpp

@ -40,8 +40,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "plAnimCmdMsg.h"
#include "hsStream.h"
#pragma hdrstop
#include "plAnimCmdMsg.h"
plAnimCmdMsg::~plAnimCmdMsg()
{

8
Sources/Plasma/PubUtilLib/plMessage/plAvCoopMsg.cpp

@ -42,12 +42,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef SERVER
#ifndef NO_AV_MSGS
// singular
#include "plAvCoopMsg.h"
// global
#include "hsStream.h"
#include "hsResMgr.h"
#pragma hdrstop
// singular
#include "plAvCoopMsg.h"
// other
#include "plAvatar/plAvatarMgr.h"

9
Sources/Plasma/PubUtilLib/plMessage/plAvatarMsg.cpp

@ -41,17 +41,16 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#ifndef NO_AV_MSGS
#include "plAvatarMsg.h"
#include "hsResMgr.h"
#pragma hdrstop
#include "pnKeyedObject/plKey.h"
#include "pnSceneObject/plSceneObject.h"
#include "plAvatarMsg.h"
#include "plMessage/plOneShotCallbacks.h"
#include "pnSceneObject/plSceneObject.h"
#ifndef SERVER
#include "plAvatar/plAvBrain.h"
# include "plAvatar/plAvBrain.h"
#endif

4
Sources/Plasma/PubUtilLib/plMessage/plBulletMsg.cpp

@ -41,11 +41,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "HeadSpin.h"
#include "hsFastMath.h"
#include "hsStream.h"
#pragma hdrstop
#include "plBulletMsg.h"
#include "hsFastMath.h"
void plBulletMsg::Read(hsStream* stream, hsResMgr* mgr)
{

8
Sources/Plasma/PubUtilLib/plMessage/plCCRMsg.cpp

@ -39,11 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "hsStream.h"
#include "plCCRMsg.h"
#include "hsResMgr.h"
#include "hsStream.h"
#include "pnNetCommon/plNetApp.h"
#include "plResMgr/plResManager.h"
#pragma hdrstop
#include "plCCRMsg.h"
#include "plNetCommon/plNetCommon.h"
void plCCRPetitionMsg::Read(hsStream* stream, hsResMgr* mgr)

2
Sources/Plasma/PubUtilLib/plMessage/plCaptureRenderMsg.cpp

@ -41,6 +41,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "HeadSpin.h"
#pragma hdrstop
#include "plCaptureRenderMsg.h"
#include "plGImage/plMipmap.h"

7
Sources/Plasma/PubUtilLib/plMessage/plClimbMsg.cpp

@ -39,12 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
// singular
#include "plClimbMsg.h"
// global
#include "hsResMgr.h"
#include "hsStream.h"
#pragma hdrstop
#include "plClimbMsg.h"
plClimbMsg::plClimbMsg()
: fCommand(kNoCommand),

6
Sources/Plasma/PubUtilLib/plMessage/plDynaDecalEnableMsg.cpp

@ -41,10 +41,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "HeadSpin.h"
#include "plDynaDecalEnableMsg.h"
#include "hsResMgr.h"
#include "hsStream.h"
#pragma hdrstop
#include "plDynaDecalEnableMsg.h"
plDynaDecalEnableMsg::plDynaDecalEnableMsg()
: plMessage(nil, nil, nil),

5
Sources/Plasma/PubUtilLib/plMessage/plDynamicEnvMapMsg.cpp

@ -40,9 +40,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "plDynamicEnvMapMsg.h"
#include "hsStream.h"
#pragma hdrstop
#include "plDynamicEnvMapMsg.h"
void plDynamicEnvMapMsg::Read(hsStream* s, hsResMgr* mgr)
{

6
Sources/Plasma/PubUtilLib/plMessage/plDynamicTextMsg.cpp

@ -47,9 +47,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
//////////////////////////////////////////////////////////////////////////////
#include "HeadSpin.h"
#include "plDynamicTextMsg.h"
#include "hsResMgr.h"
#include "hsBitVector.h"
#include "hsResMgr.h"
#pragma hdrstop
#include "plDynamicTextMsg.h"
void plDynamicTextMsg::SetTextColor( hsColorRGBA &c, bool blockRGB )
{

6
Sources/Plasma/PubUtilLib/plMessage/plInputEventMsg.cpp

@ -41,10 +41,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "HeadSpin.h"
#include "plInputEventMsg.h"
#include "hsBitVector.h"
#include "pnKeyedObject/plKey.h"
#include "hsResMgr.h"
#include "hsBitVector.h"
#pragma hdrstop
#include "plInputEventMsg.h"
plInputEventMsg::plInputEventMsg() :
fEvent(-1)

10
Sources/Plasma/PubUtilLib/plMessage/plInputIfaceMgrMsg.cpp

@ -39,16 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
//////////////////////////////////////////////////////////////////////////////
// //
// plInputIfaceMgrMsg //
// Message wrapper for commands to plDynamicTextMap. //
// //
//////////////////////////////////////////////////////////////////////////////
#include "hsResMgr.h"
#pragma hdrstop
#include "plInputIfaceMgrMsg.h"
#include "plInputCore/plInputInterface.h"
#include "hsResMgr.h"
plInputIfaceMgrMsg::~plInputIfaceMgrMsg()
{

1
Sources/Plasma/PubUtilLib/plMessage/plLOSHitMsg.cpp

@ -42,6 +42,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsResMgr.h"
#include "hsStream.h"
#pragma hdrstop
#include "plLOSHitMsg.h"

5
Sources/Plasma/PubUtilLib/plMessage/plLOSRequestMsg.cpp

@ -39,9 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "plLOSRequestMsg.h"
#include "hsResMgr.h"
#include "pnKeyedObject/plUoid.h"
#pragma hdrstop
#include "plLOSRequestMsg.h"
plLOSRequestMsg::plLOSRequestMsg()
: fRequestID(0),

4
Sources/Plasma/PubUtilLib/plMessage/plLayRefMsg.cpp

@ -41,8 +41,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "HeadSpin.h"
#include "plLayRefMsg.h"
#include "hsStream.h"
#pragma hdrstop
#include "plLayRefMsg.h"
void plLayRefMsg::Read(hsStream* stream, hsResMgr* mgr)
{

9
Sources/Plasma/PubUtilLib/plMessage/plLinkToAgeMsg.cpp

@ -39,14 +39,15 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "hsStream.h"
#include "plLinkToAgeMsg.h"
#include "hsResMgr.h"
#include "plgDispatch.h"
#include "hsResMgr.h"
#include "hsStream.h"
#pragma hdrstop
#include "plLinkToAgeMsg.h"
#include "plNetCommon/plNetServerSessionInfo.h"
#include "plNetCommon/plNetCommon.h"
#include "hsBitVector.h"
#include "pnNetCommon/plNetApp.h"
/////////////////////////////////////////////////////////////////////////

11
Sources/Plasma/PubUtilLib/plMessage/plListenerMsg.cpp

@ -41,11 +41,14 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "HeadSpin.h"
#include "hsStream.h"
#include "plListenerMsg.h"
#include "hsResMgr.h"
#include "hsStream.h"
#include "pnKeyedObject/plUoid.h"
#include "pnKeyedObject/plFixedKey.h"
#pragma hdrstop
#include "plListenerMsg.h"
void plListenerMsg::Read(hsStream* s, hsResMgr* mgr)
@ -74,10 +77,6 @@ plSetListenerMsg::plSetListenerMsg( uint8_t type, const plKey &srcKey, bool bind
Set( srcKey, type, binding );
}
plSetListenerMsg::~plSetListenerMsg()
{
}
void plSetListenerMsg::Read( hsStream *s, hsResMgr *mgr )
{
plMessage::IMsgRead(s, mgr);

3
Sources/Plasma/PubUtilLib/plMessage/plListenerMsg.h

@ -104,8 +104,7 @@ public:
plSetListenerMsg() : plMessage( nil, nil, nil ) { fType = 0; fBinding = false; }
plSetListenerMsg( uint8_t type, const plKey &srcKey, bool binding );
~plSetListenerMsg();
CLASSNAME_REGISTER( plSetListenerMsg );
GETINTERFACE_ANY( plSetListenerMsg, plMessage );

12
Sources/Plasma/PubUtilLib/plMessage/plLoadAgeMsg.cpp

@ -39,14 +39,16 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "hsStream.h"
#include "plLoadAgeMsg.h"
#include "hsResMgr.h"
#include "hsBitVector.h"
#include "hsResMgr.h"
#include "hsStream.h"
#pragma hdrstop
void plLoadAgeMsg::Read(hsStream* stream, hsResMgr* mgr)
{
#include "plLoadAgeMsg.h"
void plLoadAgeMsg::Read(hsStream* stream, hsResMgr* mgr)
{
plMessage::IMsgRead(stream, mgr);
// read agename

7
Sources/Plasma/PubUtilLib/plMessage/plLoadAvatarMsg.cpp

@ -42,12 +42,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef NO_AV_MSGS
#ifndef SERVER
#include "hsStream.h"
#include "plLoadAvatarMsg.h"
#include "hsResMgr.h"
#include "hsStream.h"
#include "pnNetCommon/plNetApp.h"
#include "pnNetCommon/plSynchedObject.h"
#pragma hdrstop
#include "plLoadAvatarMsg.h"
#include "plAvatar/plAvatarTasks.h"

11
Sources/Plasma/PubUtilLib/plMessage/plLoadCloneMsg.cpp

@ -42,17 +42,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef NO_AV_MSGS
#ifndef SERVER
// singular
#include "plLoadAvatarMsg.h"
// global
#include "HeadSpin.h"
#include "hsResMgr.h"
// other
#include "pnNetCommon/plNetApp.h"
#include "HeadSpin.h"
#pragma hdrstop
#include "plLoadAvatarMsg.h"
// CTOR / default
plLoadCloneMsg::plLoadCloneMsg()

5
Sources/Plasma/PubUtilLib/plMessage/plMatrixUpdateMsg.cpp

@ -40,10 +40,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "HeadSpin.h"
#include "plMatrixUpdateMsg.h"
#include "hsResMgr.h"
#include "hsStream.h"
#pragma hdrstop
#include "plMatrixUpdateMsg.h"
void plMatrixUpdateMsg::Read(hsStream* stream, hsResMgr* mgr)
{

5
Sources/Plasma/PubUtilLib/plMessage/plMultistageMsg.cpp

@ -39,8 +39,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "plMultistageMsg.h"
#include "hsStream.h"
#pragma hdrstop
#include "plMultistageMsg.h"
void plMultistageModMsg::Read(hsStream *stream, hsResMgr *mgr)
{

7
Sources/Plasma/PubUtilLib/plMessage/plNetVoiceListMsg.cpp

@ -40,10 +40,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "HeadSpin.h"
#include "plNetVoiceListMsg.h"
#include "hsStream.h"
#include "hsResMgr.h"
#include "hsStream.h"
#pragma hdrstop
#include "plNetVoiceListMsg.h"
void plNetVoiceListMsg::Read(hsStream* stream, hsResMgr* mgr)
{

6
Sources/Plasma/PubUtilLib/plMessage/plOneShotCallbacks.cpp

@ -39,10 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "plOneShotCallbacks.h"
#include "hsStream.h"
#include "hsResMgr.h"
#include "hsStream.h"
#pragma hdrstop
#include "plOneShotCallbacks.h"
plOneShotCallbacks::plOneShotCallbacks()
{

3
Sources/Plasma/PubUtilLib/plMessage/plOneShotMsg.cpp

@ -39,6 +39,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#pragma hdrstop
#include "plOneShotMsg.h"
#include "plOneShotCallbacks.h"

9
Sources/Plasma/PubUtilLib/plMessage/plRenderRequestMsg.cpp

@ -41,11 +41,14 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "HeadSpin.h"
#include "plRenderRequestMsg.h"
#include "pnKeyedObject/plUoid.h"
#include "pnKeyedObject/plFixedKey.h"
#include "hsResMgr.h"
#include "pnKeyedObject/plFixedKey.h"
#include "pnKeyedObject/plUoid.h"
#pragma hdrstop
#include "plRenderRequestMsg.h"
plRenderRequestMsg::plRenderRequestMsg(plKey sender, plRenderRequestBase* req)
: plMessage(sender, nil, nil),

6
Sources/Plasma/PubUtilLib/plMessage/plRideAnimatedPhysMsg.cpp

@ -39,10 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "plRideAnimatedPhysMsg.h"
// global
#include "hsResMgr.h"
#include "hsStream.h"
#pragma hdrstop
#include "plRideAnimatedPhysMsg.h"
plRideAnimatedPhysMsg::plRideAnimatedPhysMsg()
:fRegion(nil)

4
Sources/Plasma/PubUtilLib/plMessage/plRippleShapeMsg.cpp

@ -41,11 +41,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "HeadSpin.h"
#include "plRippleShapeMsg.h"
#include "hsResMgr.h"
#include "hsStream.h"
#pragma hdrstop
#include "plRippleShapeMsg.h"
plRippleShapeMsg::plRippleShapeMsg()
: fShape(nil)

5
Sources/Plasma/PubUtilLib/plMessage/plSimStateMsg.cpp

@ -39,8 +39,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "plMessage/plSimStateMsg.h"
#include "hsResMgr.h"
#pragma hdrstop
#include "plMessage/plSimStateMsg.h"
void plSubWorldMsg::Read(hsStream *stream, hsResMgr *mgr)
{

7
Sources/Plasma/PubUtilLib/plMessage/plSwimMsg.cpp

@ -39,12 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
// singular
#include "plSwimMsg.h"
// global
#include "hsResMgr.h"
#include "hsStream.h"
#pragma hdrstop
#include "plSwimMsg.h"
// ctor default ------
// -------------

5
Sources/Plasma/PubUtilLib/plMessage/plSynchEnableMsg.cpp

@ -39,8 +39,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "plSynchEnableMsg.h"
#include "pnNetCommon/plNetApp.h"
#pragma hdrstop
#include "plSynchEnableMsg.h"
plSynchEnableMsg::plSynchEnableMsg(bool push, bool enable) : fPush(push), fEnable(enable)
{

3
Sources/Plasma/PubUtilLib/plMessage/plTransitionMsg.cpp

@ -39,6 +39,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#pragma hdrstop
#include "plTransitionMsg.h"
plTransitionMsg::~plTransitionMsg()

4
Sources/Plasma/PubUtilLib/plMessage/plVaultNotifyMsg.cpp

@ -39,9 +39,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "hsStream.h"
#include "plVaultNotifyMsg.h"
#pragma hdrstop
#include "plVaultNotifyMsg.h"
plVaultNotifyMsg::plVaultNotifyMsg()
: fType( kNothing )

Loading…
Cancel
Save