Panda3D
eggRename.h
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file eggRename.h
10  * @author masad
11  * @date 2005-04-22
12  */
13 
14 #ifndef EGGRENAME_H
15 #define EGGRENAME_H
16 
17 #include "pandatoolbase.h"
18 
19 #include "eggMultiFilter.h"
20 
21 /**
22  * A program to read an egg file and write an equivalent egg file, with
23  * stripping prefix for now, but more along the way.
24  */
25 class EggRename : public EggMultiFilter {
26 public:
27  EggRename();
28 
29  void run();
30 
31  vector_string _strip_prefix;
32 };
33 
34 #endif
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
A program to read an egg file and write an equivalent egg file, with stripping prefix for now,...
Definition: eggRename.h:25
This is a base class for a program that reads in a number of egg files, operates on them,...
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.