COVISE Core
coGRAddDocMsg.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// ++ coGRAddDocMsg - show document in COVER ++
12// ++ ++
13// ++ ++
14// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
15
16#ifndef COGRADDDOCMSG_H
17#define COGRADDDOCMSG_H
18
19#include "coGRDocMsg.h"
20#include <util/coExport.h>
21
22namespace grmsg
23{
24
26{
27public:
28 // construct msg to send
29 coGRAddDocMsg(const char *document_name, const char *image_name);
30
31 // reconstruct from received msg
32 coGRAddDocMsg(const char *msg);
33
34 // destructor
36
37 // specific functions
38 const char *getImageName()
39 {
40 return imageName_;
41 };
42
43private:
45};
46}
47#endif
#define GRMSGEXPORT
Definition: coExport.h:349
Definition: coGRActivatedViewpointMsg.h:23
Definition: coGRAddDocMsg.h:26
char * imageName_
Definition: coGRAddDocMsg.h:41
const char * getImageName()
Definition: coGRAddDocMsg.h:38
Definition: coGRDocMsg.h:26