COVISE Core
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
coGRObjTransformSGItemMsg.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)2007 VISENSO ++
11 // ++ coGRObjTransformSGItemMsg - stores TransformationMatrix of a ++
12 // ++ SceneGraphItem ++
13 // ++ ++
14 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
15 
16 #ifndef COGROBJTRANSFORMSGITEMMSG_H
17 #define COGROBJTRANSFORMSGITEMMSG_H
18 
20 
21 namespace grmsg
22 {
23 
25 {
26 public:
27  // construct msg to send
28  coGRObjTransformSGItemMsg(const char *obj_name, float mat00, float mat01, float mat02, float mat03, float mat10, float mat11, float mat12, float mat13, float mat20, float mat21, float mat22, float mat23, float mat30, float mat31, float mat32, float mat33);
29 
30  // reconstruct from received msg
31  coGRObjTransformSGItemMsg(const char *msg);
32 };
33 }
34 #endif
#define GRMSGEXPORT
Definition: coExport.h:337
Definition: coGRObjTransformAbstractMsg.h:25
Definition: coGRObjTransformSGItemMsg.h:24