00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef EGGTOX_H
00016 #define EGGTOX_H
00017
00018 #include "pandatoolbase.h"
00019 #include "eggToSomething.h"
00020 #include "xFileMaker.h"
00021
00022 #include "programBase.h"
00023 #include "withOutputFile.h"
00024 #include "filename.h"
00025
00026 class Node;
00027
00028
00029
00030
00031
00032
00033
00034 class EggToX : public EggToSomething {
00035 public:
00036 EggToX();
00037
00038 void run();
00039
00040 private:
00041 void convert_scene_graph(Node *root);
00042
00043 Filename _input_filename;
00044 XFileMaker _x;
00045 };
00046
00047 #endif