Panda3D
lwoScan.h
1 // Filename: lwoScan.h
2 // Created by: drose (30Apr01)
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 LWOSCAN_H
16 #define LWOSCAN_H
17 
18 #include "programBase.h"
19 #include "filename.h"
20 
21 ////////////////////////////////////////////////////////////////////
22 // Class : LwoScan
23 // Description : A program to read a Lightwave file and report its
24 // structure and contents.
25 ////////////////////////////////////////////////////////////////////
26 class LwoScan : public ProgramBase {
27 public:
28  LwoScan();
29 
30  void run();
31 
32 protected:
33  virtual bool handle_args(Args &args);
34 
35  Filename _input_filename;
36 };
37 
38 #endif
39 
This is intended to be the base class for most general-purpose utility programs in the PANDATOOL tree...
Definition: programBase.h:37
The name of a file, such as a texture file or an Egg file.
Definition: filename.h:44
A program to read a Lightwave file and report its structure and contents.
Definition: lwoScan.h:26