Panda3D
bamToEgg.h
1 // Filename: bamToEgg.h
2 // Created by: drose (25Jun01)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef BAMTOEGG_H
16 #define BAMTOEGG_H
17 
18 #include "pandatoolbase.h"
19 
20 #include "somethingToEgg.h"
21 
22 ////////////////////////////////////////////////////////////////////
23 // Class : BamToEgg
24 // Description : This program reads a bam file, for instance as
25 // written out from a real-time interaction session, and
26 // generates a corresponding egg file.
27 ////////////////////////////////////////////////////////////////////
28 class BamToEgg : public SomethingToEgg {
29 public:
30  BamToEgg();
31 
32  void run();
33 
34 private:
35 };
36 
37 #endif
This program reads a bam file, for instance as written out from a real-time interaction session...
Definition: bamToEgg.h:28
This is the general base class for a file-converter program that reads some model file format and gen...