COVISE Core
coGRObjKinematicsStateMsg.h
Go to the documentation of this file.
1/* This file is part of COVISE.
2
3 You can use it under the terms of the GNU Lesser General Public License
4 version 2.1 or later, see lgpl-2.1.txt.
5
6 * License: LGPL 2+ */
7
8//-*-Mode: C++;-*-
9// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10// ++ (C)2006 VISENSO ++
11// ++ coGRObjKinematicsStateMsg - send a kinmeatics state between ++
12// ++ OpenCOVER and vr-prepare ++
13// ++ ++
14// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
15
16#ifndef COGROBJKINEMATICSSTATEMSG_H
17#define COGROBJKINEMATICSSTATEMSG_H
18
19#include "coGRObjMsg.h"
20#include <util/coExport.h>
21
22namespace grmsg
23{
24
26{
27public:
28 // construct msg to send
29 coGRObjKinematicsStateMsg(const char *obj_name, const char *state);
30
31 // reconstruct from received msg
32 coGRObjKinematicsStateMsg(const char *msg);
34
35 const char *getState();
36
37private:
38 char *state_;
39};
40}
41#endif
#define GRMSGEXPORT
Definition: coExport.h:349
Definition: coGRActivatedViewpointMsg.h:23
Definition: coGRObjKinematicsStateMsg.h:26
char * state_
Definition: coGRObjKinematicsStateMsg.h:38
Definition: coGRObjMsg.h:26