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