// Object Viewer Qt - BNP Manager Plugin - MMORPG Framework // Copyright (C) 2011 Roland Winklmeier // // 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 . #ifndef BNP_MANAGER_CONSTANTS_H #define BNP_MANAGER_CONSTANTS_H namespace BNPManager { namespace Constants { //settings const char * const BNP_MANAGER_SECTION = "BNPManager"; //resources const char *const ICON_NEW = ":/images/ic_nel_new.png"; const char *const ICON_ADD = ":/images/ic_nel_add_item.png"; const char *const ICON_DELETE = ":/images/ic_nel_delete_item.png"; const char *const ICON_UNPACK = ":/images/ic_nel_export.png"; const char *const ICON_CLOSE = ":/images/ic_nel_reset_all.png"; } // namespace Constants } // namespace Plugin #endif