diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-24 21:16:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-24 21:16:44 +0300 |
commit | 4749c8977e2e803692bd844b5400f8d72cbaf17f (patch) | |
tree | b60511d5c852566722590a7b0501a110ce0c2e99 /src/enums | |
parent | 3a883849147535b449bf4eb24563da4db8a1ef9c (diff) | |
download | plus-4749c8977e2e803692bd844b5400f8d72cbaf17f.tar.gz plus-4749c8977e2e803692bd844b5400f8d72cbaf17f.tar.bz2 plus-4749c8977e2e803692bd844b5400f8d72cbaf17f.tar.xz plus-4749c8977e2e803692bd844b5400f8d72cbaf17f.zip |
Add strong typed bool type Online.
Diffstat (limited to 'src/enums')
-rw-r--r-- | src/enums/simpletypes/online.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/enums/simpletypes/online.h b/src/enums/simpletypes/online.h new file mode 100644 index 000000000..47ccddd95 --- /dev/null +++ b/src/enums/simpletypes/online.h @@ -0,0 +1,28 @@ +/* + * The ManaPlus Client + * Copyright (C) 2015 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 ENUMS_SIMPLETYPES_ONLINE_H +#define ENUMS_SIMPLETYPES_ONLINE_H + +#include "enums/simpletypes/simpledefines.h" + +defBoolEnum(Online); + +#endif // ENUMS_SIMPLETYPES_ONLINE_H |