COVISE Core
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
coGRSendDocNumbersMsg.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)2008 VISENSO ++
11 // ++ coGRSendDocNumbersMsg - sends min and may mumber of pages to GUI ++
12 // ++ ++
13 // ++ ++
14 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
15 
16 #ifndef COGRSENDDOCNUMBERSMSG_H
17 #define COGRSENDDOCNUMBERSMSG_H
18 
19 #include "coGRDocMsg.h"
20 #include <util/coExport.h>
21 
22 namespace grmsg
23 {
24 
26 {
27 public:
28  // construct msg to send
29  coGRSendDocNumbersMsg(const char *document_name, int minPage, int maxPage);
30 
31  // reconstruct from received msg
32  coGRSendDocNumbersMsg(const char *msg);
33 
34  // specific functions
35  int getMinPage()
36  {
37  return minPage_;
38  };
39  int getMaxPage()
40  {
41  return maxPage_;
42  };
43 
44 private:
45  int minPage_, maxPage_;
46 };
47 }
48 #endif
Definition: coGRDocMsg.h:25
#define GRMSGEXPORT
Definition: coExport.h:337
int getMaxPage()
Definition: coGRSendDocNumbersMsg.h:39
int getMinPage()
Definition: coGRSendDocNumbersMsg.h:35
Definition: coGRSendDocNumbersMsg.h:25