// Ryzom - MMORPG Framework // Copyright (C) 2010 Winch Gate Property Limited // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . namespace EGSPD { /* ----------------------------------------- * Inline implementation of CSeason * ----------------------------------------- */ inline const std::string& CSeason::toString(TSeason v) { if (v < 0 || v >= ___TSeason_useSize) { nlwarning("TSeason::toString(): value '%u' is not matched, \"Unknown\" string returned", v); return _UnknownString; } if (!_Initialised) { init(); } return _StrTable[v]; } inline CSeason::TSeason CSeason::fromString(const std::string& v) { if (!_Initialised) { init(); } if(v==_UnknownString) { return Unknown; } const std::map::const_iterator it = _ValueMap.find(NLMISC::toLower(v)); if (it == _ValueMap.end()) { nlwarning("TSeason::toString(): string '%s' is not matched, 'Unknown' enum value returned", v.c_str()); return Unknown; } return (*it).second; } // End of inline implementation of CSeason } // End of EGSPD