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