00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef COIN_SOCOUNTER_H
00025 #define COIN_SOCOUNTER_H
00026
00027 #include <Inventor/engines/SoSubEngine.h>
00028 #include <Inventor/engines/SoEngineOutput.h>
00029 #include <Inventor/fields/SoSFTrigger.h>
00030 #include <Inventor/fields/SoSFShort.h>
00031
00032
00033 class COIN_DLL_API SoCounter : public SoEngine {
00034 typedef SoEngine inherited;
00035
00036 SO_ENGINE_HEADER(SoCounter);
00037
00038 public:
00039 static void initClass(void);
00040 SoCounter(void);
00041
00042 SoSFShort min;
00043 SoSFShort max;
00044 SoSFShort step;
00045 SoSFTrigger trigger;
00046 SoSFShort reset;
00047
00048 SoEngineOutput output;
00049 SoEngineOutput syncOut;
00050
00051 protected:
00052 ~SoCounter(void);
00053
00054 private:
00055 virtual void evaluate(void);
00056 virtual void inputChanged(SoField * which);
00057
00058 int numsteps;
00059 short value;
00060 };
00061
00062 #endif // !COIN_SOCOUNTER_H