00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef BASICSKEL_H
00016 #define BASICSKEL_H
00017
00018 #include "pandabase.h"
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 class EXPCL_PANDASKEL BasicSkel {
00030 PUBLISHED:
00031 INLINE BasicSkel();
00032 INLINE ~BasicSkel();
00033
00034
00035 INLINE void set_value(int n);
00036 INLINE int get_value();
00037
00038
00039 void set_value_alt(int n);
00040 int get_value_alt();
00041
00042 private:
00043 int _value;
00044 };
00045
00046 #include "basicSkel.I"
00047
00048 #endif
00049