COVISE Core
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
coGRCreateDefaultViewpointMsg.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 // ++ coGRcreateViewpointMsg - message to create a viewpoint in COVER ++
12 // ++ ++
13 // ++ ++
14 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
15 
16 #ifndef COGRCREATEDEFAULTVIEWPOINTMSG_H
17 #define COGRCREATEDEFAULTVIEWPOINTMSG_H
18 
19 #include "coGRMsg.h"
20 #include <util/coExport.h>
21 
22 namespace grmsg
23 {
24 
26 {
27 public:
28  int getViewpointId();
29  const char *getName();
30 
31  coGRCreateDefaultViewpointMsg(const char *name, int id);
32  coGRCreateDefaultViewpointMsg(const char *msg);
34 
35 private:
36  int id_;
37  char *name_;
38 };
39 }
40 #endif
Definition: coGRMsg.h:38
GLuint const GLchar * name
Definition: khronos-glext.h:6722
Definition: coGRCreateDefaultViewpointMsg.h:25
#define GRMSGEXPORT
Definition: coExport.h:337
char * name_
Definition: coGRCreateDefaultViewpointMsg.h:37
int id_
Definition: coGRCreateDefaultViewpointMsg.h:36