00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef VxFrmFtorDfo_h
00016 #define VxFrmFtorDfo_h
00017
00018
00019 #include "HxString.h"
00020 #include "VxValue.h"
00021
00022
00023 class VxFrmFtorDfo{
00024 public:
00025
00026 virtual VxValue doIt(int frame, const VxValue& input1, const VxValue& input2) = 0;
00027
00028 virtual HxString getInputClass() const = 0;
00029 virtual HxString getOutputClass() const = 0;
00030 virtual HxString name() const = 0;
00031
00032 virtual VxFrmFtorDfo* clone() const = 0;
00033
00034 protected:
00035 VxFrmFtorDfo() {};
00036
00037 };
00038
00039 #endif