-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathincludes.h
More file actions
39 lines (30 loc) · 966 Bytes
/
includes.h
File metadata and controls
39 lines (30 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// includes.h
// SDL_gui
//
// Created by Michael Ryan on 10/13/15.
// Copyright © 2015 Michael Ryan. All rights reserved.
//
#ifndef includes_h
#define includes_h
#include <SDL.h>
#include <SDL_image.h>
#include <SDL_ttf.h>
#include <SDL_mixer.h>
#include <boost/shared_ptr.hpp>
#include <boost/serialization/extended_type_info.hpp>//make boost run on 32bit
#include <boost/serialization/singleton.hpp>//make boost run on 32bit
#include <boost/serialization/shared_ptr.hpp>
//#include <boost/archive/shared_ptr_helper.hpp>
#include <boost/serialization/shared_ptr_helper.hpp>
//Boost archiving
// include headers that implement a archive
#include <boost/archive/binary_oarchive.hpp>
#include <boost/archive/binary_iarchive.hpp>
#include <boost/serialization/vector.hpp>
#include <boost/make_shared.hpp>
#include <boost/enable_shared_from_this.hpp>
#include <boost/filesystem.hpp>
using namespace std;
using namespace boost;
#endif /* includes_h */