Add/fix broken include guards

This commit is contained in:
Tobias Loose
2013-11-23 16:09:11 +01:00
parent 352e3c2daa
commit 1e8fc81aa3
3 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
#ifndef _DECK_MANAGER_H
#define _DECK_MANAGER_H
#include <string>
#include <vector>
@@ -43,3 +46,5 @@ public:
~DeckManager();
};
#endif //_DECK_MANAGER_H

View File

@@ -1,4 +1,4 @@
#ifndef _MTGPACCK_H_
#ifndef _MTGPACK_H_
#define _MTGPACK_H_
class ShopBooster;

View File

@@ -1,3 +1,6 @@
#ifndef _STYLE_MANAGER_H_
#define _STYLE_MANAGER_H_
class WStyle
{
public:
@@ -34,3 +37,5 @@ protected:
string activeStyle;
map<string, WStyle*> styles;
};
#endif //_STYLE_MANAGER_H_