COVISE Core
coGRGenericParamChangedMsg.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// ++ coGRGenericParamChangedMsg - Message sent if a generic param was ++
12// ++ changed ++
13// ++ ++
14// ++ ++
15// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
16
17#ifndef COGRGENERICPARAMCHANGEDMSG_H
18#define COGRGENERICPARAMCHANGEDMSG_H
19
20#include "coGRMsg.h"
21#include <util/coExport.h>
22
23namespace grmsg
24{
25
27{
28public:
29 coGRGenericParamChangedMsg(const char *objectName, const char *paramName, const char *value);
30 coGRGenericParamChangedMsg(const char *msg);
31 const char *getObjectName();
32 const char *getParamName();
33 const char *getValue();
34
35private:
38 char *value_;
39};
40}
41#endif
#define GRMSGEXPORT
Definition: coExport.h:349
GLsizei const GLfloat * value
Definition: khronos-glext.h:6760
Definition: coGRActivatedViewpointMsg.h:23
Definition: coGRGenericParamChangedMsg.h:27
char * value_
Definition: coGRGenericParamChangedMsg.h:38
char * paramName_
Definition: coGRGenericParamChangedMsg.h:37
char * objectName_
Definition: coGRGenericParamChangedMsg.h:36
Definition: coGRMsg.h:38