#ifndef FUNCTION_H #define FUNCTION_H #include class Function { public: Function(); virtual ~Function(); private: }; #endif