/* * FixInput.h * */ #ifndef PROCESSOR_FIXINPUT_H_ #define PROCESSOR_FIXINPUT_H_ #include #include "Math/bigint.h" #include "Math/Integer.h" template class FixInput_ { public: const static int N_DEST = 1; const static int N_PARAM = 1; const static char* NAME; const static int TYPE = 1; T items[N_DEST]; void read(std::istream& in, const int* params); }; template const char* FixInput_::NAME = "real number"; #ifdef LOW_PREC_INPUT typedef FixInput_ FixInput; #else typedef FixInput_ FixInput; #endif #endif /* PROCESSOR_FIXINPUT_H_ */