diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-29 20:55:14 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-30 00:03:19 +0300 |
commit | 370a8245ae3fbbfe449000b6bdaab366d08d925e (patch) | |
tree | 406edeaf4092faf92fb1e80040502be4ad69cebc /src/resources/itemdbstat.h | |
parent | 12a8d0a76439f0e5a0c548fbe2752fcb144b10be (diff) | |
download | plus-370a8245ae3fbbfe449000b6bdaab366d08d925e.tar.gz plus-370a8245ae3fbbfe449000b6bdaab366d08d925e.tar.bz2 plus-370a8245ae3fbbfe449000b6bdaab366d08d925e.tar.xz plus-370a8245ae3fbbfe449000b6bdaab366d08d925e.zip |
Move itemdbstat.h from db into resources directory.
Diffstat (limited to 'src/resources/itemdbstat.h')
-rw-r--r-- | src/resources/itemdbstat.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/resources/itemdbstat.h b/src/resources/itemdbstat.h new file mode 100644 index 000000000..94e12f987 --- /dev/null +++ b/src/resources/itemdbstat.h @@ -0,0 +1,48 @@ +/* + * The ManaPlus Client + * Copyright (C) 2004-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * Copyright (C) 2011-2016 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef RESOURCES_DB_ITEMDBSTAT_H +#define RESOURCES_DB_ITEMDBSTAT_H + +#include <string> + +#include "localconsts.h" + +/** + * Item information database. + */ +namespace ItemDB +{ + struct Stat final + { + Stat(const std::string &tag0, + const std::string &format0) : + tag(tag0), + format(format0) + {} + + std::string tag; + std::string format; + }; +} // namespace ItemDB + +#endif // RESOURCES_DB_ITEMDBSTAT_H |