Line | |
---|
1 | #ifndef _BinaryLoader_H__
|
---|
2 | #define _BinaryLoader_H__
|
---|
3 |
|
---|
4 | // note use forward declaration instead
|
---|
5 | #include <string>
|
---|
6 |
|
---|
7 |
|
---|
8 | class igzstream;
|
---|
9 | class Shape3D;
|
---|
10 | class BranchGroup;
|
---|
11 | class Appearance;
|
---|
12 | class Geometry;
|
---|
13 |
|
---|
14 |
|
---|
15 | class BinaryLoader
|
---|
16 | {
|
---|
17 | public:
|
---|
18 |
|
---|
19 | BranchGroup *Load(const std::string &filename);
|
---|
20 |
|
---|
21 | protected:
|
---|
22 |
|
---|
23 | Shape3D *LoadShape(igzstream &str);
|
---|
24 |
|
---|
25 | Appearance *LoadAppearance(igzstream &str);
|
---|
26 |
|
---|
27 | Geometry *LoadGeometry(igzstream &str);
|
---|
28 | };
|
---|
29 |
|
---|
30 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.