Panda3D
parse_vrml.h
1 // Filename: parse_vrml.h
2 // Created by: drose (24Jun99)
3 //
4 ////////////////////////////////////////////////////////////////////
5 // PANDA 3D SOFTWARE
6 // Copyright (c) Carnegie Mellon University. All rights reserved.
7 //
8 // All use of this software is subject to the terms of the revised BSD
9 // license. You should have received a copy of this license along
10 // with this source code in a file named "LICENSE."
11 ////////////////////////////////////////////////////////////////////
12 
13 #ifndef PARSE_VRML_H
14 #define PARSE_VRML_H
15 
16 #include "vrmlNode.h"
17 #include "filename.h"
18 
19 VrmlScene *parse_vrml(Filename filename);
20 VrmlScene *parse_vrml(istream &in, const string &filename);
21 
22 #endif
This is our own Panda specialization on the default STL vector.
Definition: pvector.h:39
The name of a file, such as a texture file or an Egg file.
Definition: filename.h:44