-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathObjFile.hpp
59 lines (33 loc) · 890 Bytes
/
ObjFile.hpp
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Object Class
// Damien MATTEI
// read .OBJ file from disk
#ifndef OBJFILE_HPP
#define OBJFILE_HPP
//#include "Object.hpp"
#include "Universe.hpp"
#include "Vector3D.hpp"
#include "Panorama.hpp"
#include "Face3D.hpp"
#include <boost/algorithm/string.hpp>
//using namespace std;
using std::string;
using namespace boost;
#include <iostream>
#include <fstream>
//#include <sstream>
//#include <string>
#include <list>
#include <assert.h> /* assert */
#include "debug.hpp"
// what S is used for?
template <class T,class S> class ObjFile { // NOTE: i replaced typenam by class? no difference seen
public:
string filename;
Universe<T> * univ;
Panorama<T> * pan;
ObjFile();
ObjFile(string,Universe<T> &,Panorama<T> &);
~ObjFile();
};
template <class T,class S> ostream& operator<< (ostream &, const ObjFile<T,S> &);
#endif /* OBJFILE_HPP */