Browse Source

Change Uuid to plUUID in this message.

Darryl Pogue 13 years ago
parent
commit
df57a01d91
  1. 8
      Sources/Plasma/PubUtilLib/plMessage/plInputIfaceMgrMsg.h

8
Sources/Plasma/PubUtilLib/plMessage/plInputIfaceMgrMsg.h

@ -52,7 +52,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsStream.h" #include "hsStream.h"
#include "hsResMgr.h" #include "hsResMgr.h"
#include "pnMessage/plMessage.h" #include "pnMessage/plMessage.h"
#include "pnUtils/pnUtils.h" #include "pnUUID/pnUUID.h"
class plInputInterface; class plInputInterface;
class plInputIfaceMgrMsg : public plMessage class plInputIfaceMgrMsg : public plMessage
@ -65,7 +65,7 @@ class plInputIfaceMgrMsg : public plMessage
const char* ageName; const char* ageName;
const char* ageFileName; const char* ageFileName;
const char* spawnPoint; const char* spawnPoint;
Uuid ageInstanceGuid; plUUID ageInstanceGuid;
plKey fAvKey; plKey fAvKey;
public: public:
@ -125,8 +125,8 @@ class plInputIfaceMgrMsg : public plMessage
const char* GetAgeFileName() { return ageFileName; } const char* GetAgeFileName() { return ageFileName; }
void SetSpawnPoint(const char* s) { spawnPoint = s; } void SetSpawnPoint(const char* s) { spawnPoint = s; }
const char* GetSpawnPoint() { return spawnPoint; } const char* GetSpawnPoint() { return spawnPoint; }
void SetAgeInstanceGuid(const Uuid& guid) { ageInstanceGuid = guid; } void SetAgeInstanceGuid(const plUUID& guid) { ageInstanceGuid = guid; }
const Uuid& GetAgeInstanceGuid() { return ageInstanceGuid; } const plUUID& GetAgeInstanceGuid() { return ageInstanceGuid; }
UInt8 GetCommand( void ) { return fCommand; } UInt8 GetCommand( void ) { return fCommand; }
UInt32 GetPageID( void ) { return fPageID; } UInt32 GetPageID( void ) { return fPageID; }
void SetIFace( plInputInterface *iface ); void SetIFace( plInputInterface *iface );

Loading…
Cancel
Save