COVISE Core
coGRChangeViewpointNameMsg.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// ++ coGRChangeViewpointIdMsg - message to create a viewpoint in COVER ++
12// ++ ++
13// ++ ++
14// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
15
16#ifndef COGRCHANGEVIEWPOINTNAMEMSG_H
17#define COGRCHANGEVIEWPOINTNAMEMSG_H
18
19#include "coGRMsg.h"
20#include <util/coExport.h>
21
22namespace grmsg
23{
24
26{
27public:
28 int getId();
29 char *getName();
30
31 coGRChangeViewpointNameMsg(int id, const char *name);
32 coGRChangeViewpointNameMsg(const char *msg);
33
34private:
35 int id_;
36 char *name_;
37};
38}
39#endif
#define GRMSGEXPORT
Definition: coExport.h:349
GLuint const GLchar * name
Definition: khronos-glext.h:6722
Definition: coGRActivatedViewpointMsg.h:23
Definition: coGRChangeViewpointNameMsg.h:26
char * name_
Definition: coGRChangeViewpointNameMsg.h:36
int id_
Definition: coGRChangeViewpointNameMsg.h:35
Definition: coGRMsg.h:38