00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef VxFrmFtorDispFramenr_h
00016 #define VxFrmFtorDispFramenr_h
00017
00018 #include "VxFrmFtorUfo.h"
00019
00020 class VxFrmFtorDispFramenr : public VxFrmFtorUfo {
00021 public:
00022 VxFrmFtorDispFramenr() {}
00023
00024 virtual VxValue doIt(int frame, const VxValue& input) {
00025 std::cout << "Frame: " << frame << std::endl;
00026 return VxValue((int) 0);
00027 }
00028
00029 virtual HxString getInputClass() const {
00030 return HxString("");
00031 }
00032 virtual HxString getOutputClass() const {
00033 return HxString("int");
00034 }
00035
00036 virtual HxString name() const {
00037 return HxString("DispFrameNumber");
00038 }
00039
00040 virtual VxFrmFtorUfo* clone() const {
00041 return new VxFrmFtorDispFramenr();
00042 }
00043
00044 private:
00045
00046 };
00047 #endif