LightWrap++
AC++wrapperfortheLightWave3DSDK
storeable.h
Go to the documentation of this file.
1 #ifndef LWPP_STOREABLE_H
2 #define LWPP_STOREABLE_H
3 
4 #include <lwpp/io.h>
5 
6 namespace lwpp
7 {
8  class Storeable {
9  public:
11 
15  virtual LWError Load(const LoadState &ls ) {UNUSED(ls);return 0;}
17 
21  virtual LWError Save(const SaveState &ss ) {UNUSED(ss);return 0;}
22  };
23 }
24 
25 #endif // LWPP_STOREABLE