/* * OperationRegistry.hpp * * Created on: 11.12.2011 * Author: heber */ #ifndef OPERATIONREGISTRY_HPP_ #define OPERATIONREGISTRY_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "CodePatterns/Registry.hpp" #include "Operations/Operation.hpp" class OperationRegistry : public Registry { public: OperationRegistry(); ~OperationRegistry(); }; #endif /* OPERATIONREGISTRY_HPP_ */