GlobeEngine
BundlingCommand.h
Go to the documentation of this file.
1 
9 #ifndef GlobeEngine_BundlingCommand_h
10 #define GlobeEngine_BundlingCommand_h
11 
12 #include <vector>
13 #include "OpenGL_Includes.h"
14 
15 namespace geGIS {
16  class CommuterObject;
17 
19  {
20  public:
22  virtual ~BundlingCommand();
23  virtual void clear();
24  virtual void create(CommuterObject* _refInformation);
25  virtual void processing(){};
26 
27  protected:
28  // Reference information
30  int edgeCount;
31 
32  };
33 }
34 #endif
int edgeCount
Definition: BundlingCommand.h:30
virtual void processing()
Definition: BundlingCommand.h:25
BundlingCommand()
Definition: BundlingCommand.cpp:6
Definition: BundlingCommand.h:18
Definition: ClusterGrid.h:17
const CommuterObject * refInformation
Definition: BundlingCommand.h:25
virtual ~BundlingCommand()
Definition: BundlingCommand.cpp:11
virtual void create(CommuterObject *_refInformation)
Definition: BundlingCommand.cpp:22
Definition: CommuterObject.h:39
virtual void clear()
Definition: BundlingCommand.cpp:17