COVISE Core
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
13namespace covise
14{
15
17{
18public:
19 explicit coDoGrid(const coObjInfo &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
#define DOEXPORT
Definition: coExport.h:331
GLdouble GLdouble t
Definition: khronos-glext.h:6449
list of all chemical elements
Definition: coConfig.h:27
Definition: coObjID.h:231
Definition: coDistributedObject.h:296
Definition: coDoGrid.h:17
virtual int getNumPoints() const =0
coDoGrid(const coObjInfo &info, const char *t)
Definition: coDoGrid.h:23
coDoGrid(const coObjInfo &info)
Definition: coDoGrid.h:19