COVISE Core
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
coGRObjSetNameMsg.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 // ++ coGRObjSetNameMsg - sets the name of an object ++
12 // ++ ++
13 // ++ ++
14 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
15 
16 #ifndef COGROBJSETNAMEMSG_H
17 #define COGROBJSETNAMEMSG_H
18 
19 #include "coGRObjMsg.h"
20 #include <util/coExport.h>
21 
22 namespace grmsg
23 {
24 
26 {
27 public:
28  // construct msg to send
29  coGRObjSetNameMsg(Mtype type, const char *obj_name, const char *newName);
30 
31  // reconstruct from received msg
32  coGRObjSetNameMsg(const char *msg);
33 
34  // destructor
36 
37  // specific functions
38  const char *getNewName()
39  {
40  return newName_;
41  };
42 
43 private:
44  char *newName_;
45 };
46 }
47 #endif
Definition: coGRObjMsg.h:25
#define GRMSGEXPORT
Definition: coExport.h:337
Mtype
id to specify the type of the message
Definition: coGRMsg.h:42
GLenum type
Definition: khronos-glext.h:6279
Definition: coGRObjSetNameMsg.h:25
const char * getNewName()
Definition: coGRObjSetNameMsg.h:38