Added exports, and moved constructors into .cpp.

This commit is contained in:
Robert Osfield
2009-02-05 14:54:42 +00:00
parent a88f4e2f86
commit 2e58416826
4 changed files with 45 additions and 20 deletions

View File

@@ -18,6 +18,27 @@
using namespace osg;
using namespace osgVolume;
/////////////////////////////////////////////////////////////////////////////////
//
// TileID
//
TileID::TileID():
level(-1),
x(-1),
y(-1),
z(-1)
{
}
TileID::TileID(int in_level, int in_x, int in_y, int in_z):
level(in_level),
x(in_x),
y(in_y),
z(in_z)
{
}
/////////////////////////////////////////////////////////////////////////////////
//
// VolumeTile