Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef _XNV_CC_MESSAGE_H_
00010 #define _XNV_CC_MESSAGE_H_
00011
00012 #include "XnVMessage.h"
00013
00017 class XNV_NITE_API XnVCCMessage :
00018 public XnVMessage
00019 {
00020 public:
00027 XnVCCMessage(const XnChar* strType, XnBool bValue);
00028 ~XnVCCMessage();
00029
00035 XnVMessage* Clone() const;
00036
00042 XnBool GetValue() const;
00043
00044 static XnStatus GetValue(XnVMessage* pMessage, const XnChar* strType, XnBool& bValue);
00045 protected:
00046 XnBool m_bValue;
00047 };
00048
00049 #endif