COVISE Core
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
coDoGrid.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 #ifndef CO_GRID_H
9 #define CO_GRID_H
10 
11 #include "coDistributedObject.h"
12 
13 namespace covise
14 {
15 
17 {
18 public:
19  explicit coDoGrid(const coObjInfo &info)
20  : coDistributedObject(info)
21  {
22  }
23  explicit coDoGrid(const coObjInfo &info, const char *t)
24  : coDistributedObject(info, t)
25  {
26  }
27  virtual int getNumPoints() const = 0;
28 };
29 }
30 #endif
coDoGrid(const coObjInfo &info)
Definition: coDoGrid.h:19
#define DOEXPORT
Definition: coExport.h:319
Definition: coObjID.h:230
GLdouble GLdouble t
Definition: khronos-glext.h:6449
Definition: coDoGrid.h:16
Definition: coDistributedObject.h:295
coDoGrid(const coObjInfo &info, const char *t)
Definition: coDoGrid.h:23