/* * This file is a part of CMSLU -- Content Management System like Unix * and is not publicly distributed * * Copyright (c) 2008-2009, Tomasz Sowa * All rights reserved. * */ #ifndef headerfilecmslucorefunctions #define headerfilecmslucorefunctions #include #include #include "function.h" class Functions { typedef std::map Table; Table table; public: void Clear(); void ReadFunctions(); Function * GetFunction(const std::string & name); Function * GetFunction(int code); }; #endif