|
Revision 13041, 354 bytes
(checked in by robert, 14 months ago)
|
|
Ran script to remove trailing spaces and tabs
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | #ifndef IVE_CONVEXPLANARPOLYGON |
|---|
| 2 | #define IVE_CONVEXPLANARPOLYGON 1 |
|---|
| 3 | |
|---|
| 4 | #include <osg/ConvexPlanarPolygon> |
|---|
| 5 | #include "ReadWrite.h" |
|---|
| 6 | |
|---|
| 7 | namespace ive{ |
|---|
| 8 | class ConvexPlanarPolygon : public osg::ConvexPlanarPolygon, public ReadWrite { |
|---|
| 9 | public: |
|---|
| 10 | void write(DataOutputStream* out); |
|---|
| 11 | void read(DataInputStream* in); |
|---|
| 12 | |
|---|
| 13 | virtual ~ConvexPlanarPolygon() {} |
|---|
| 14 | }; |
|---|
| 15 | } |
|---|
| 16 | |
|---|
| 17 | #endif |
|---|