PolyVox  0.2.1
Open source voxel management library
Dummy.cpp
Go to the documentation of this file.
2 
3 namespace PolyVox
4 {
6  {
7  public:
8  int getx(void);
9  int x;
10  };
11 
12  int DummyClass::getx(void)
13  {
14  return x;
15  }
16 }