16 lines
288 B
C++
16 lines
288 B
C++
#ifndef IVE_ELEVATIONSECTOR
|
|
#define IVE_ELEVATIONSECTOR 1
|
|
|
|
#include <osgSim/Sector>
|
|
#include "ReadWrite.h"
|
|
|
|
namespace ive{
|
|
class ElevationSector : public osgSim::ElevationSector, public ReadWrite {
|
|
public:
|
|
void write(DataOutputStream* out);
|
|
void read(DataInputStream* in);
|
|
};
|
|
}
|
|
|
|
#endif
|