/* * CommandRegistry.hpp * * Created on: Dec 11, 2011 * Author: heber */ #ifndef COMMANDREGISTRY_HPP_ #define COMMANDREGISTRY_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Controller/Commands/Operation.hpp" #include "CodePatterns/Registry.hpp" class CommandRegistry : public Registry { public: CommandRegistry(); ~CommandRegistry(); }; #endif /* COMMANDREGISTRY_HPP_ */