diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-29 16:56:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-29 16:56:45 +0300 |
commit | 973606a6dbd201050b7d4cd0a6a782ff742056f6 (patch) | |
tree | 4f951409d7dbde5eb201bf3c6b46f777c3ce39b8 /src/net/eathena/beingrecv.h | |
parent | d528e58cdbd306a828882eb68855e81dda2a3e62 (diff) | |
download | plus-973606a6dbd201050b7d4cd0a6a782ff742056f6.tar.gz plus-973606a6dbd201050b7d4cd0a6a782ff742056f6.tar.bz2 plus-973606a6dbd201050b7d4cd0a6a782ff742056f6.tar.xz plus-973606a6dbd201050b7d4cd0a6a782ff742056f6.zip |
Fix code style.
Diffstat (limited to 'src/net/eathena/beingrecv.h')
-rw-r--r-- | src/net/eathena/beingrecv.h | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/src/net/eathena/beingrecv.h b/src/net/eathena/beingrecv.h index 137143143..597cd9544 100644 --- a/src/net/eathena/beingrecv.h +++ b/src/net/eathena/beingrecv.h @@ -20,13 +20,31 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef NET_EATHENA_BEING_H -#define NET_EATHENA_BEING_H - -#include "net/ea/beinghandler.h" +#ifndef NET_EATHENA_BEINGRECV_H +#define NET_EATHENA_BEINGRECV_H #include "net/eathena/beingtype.h" -#include "net/eathena/messagehandler.h" + +#include "enums/simpletypes/beingid.h" + +#if defined(__GXX_EXPERIMENTAL_CXX0X__) +#if defined(__APPLE__) +#include <tr1/cstdint> +#else +#include <cstdint> +#endif +#else +#include <stdint.h> +#endif + +#include "localconsts.h" + +namespace Net +{ + class MessageIn; +} + +class Being; namespace EAthena { @@ -98,4 +116,4 @@ namespace EAthena } // namespace BeingRecv } // namespace EAthena -#endif // NET_EATHENA_BEING_H +#endif // NET_EATHENA_BEINGRECV_H |