Panda3D
eggRename.h
1 // Filename: eggRename.h
2 // Created by: masad (22Apr05)
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 EGGRENAME_H
16 #define EGGRENAME_H
17 
18 #include "pandatoolbase.h"
19 
20 #include "eggMultiFilter.h"
21 
22 ////////////////////////////////////////////////////////////////////
23 // Class : EggTrans
24 // Description : A program to read an egg file and write an equivalent
25 // egg file, with stripping prefix for now, but more
26 // along the way.
27 ////////////////////////////////////////////////////////////////////
28 class EggRename : public EggMultiFilter {
29 public:
30  EggRename();
31 
32  void run();
33 
34  vector_string _strip_prefix;
35 };
36 
37 #endif
38 
A program to read an egg file and write an equivalent egg file, with stripping prefix for now...
Definition: eggRename.h:28
This is a base class for a program that reads in a number of egg files, operates on them...