Panda3D
imageReader.h
1 // Filename: imageReader.h
2 // Created by: drose (19Jun00)
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 IMAGEREADER_H
16 #define IMAGEREADER_H
17 
18 #include "pandatoolbase.h"
19 
20 #include "imageBase.h"
21 
22 ////////////////////////////////////////////////////////////////////
23 // Class : ImageReader
24 // Description : This is the base class for a program that reads an
25 // image file, but doesn't write an image file.
26 ////////////////////////////////////////////////////////////////////
27 class ImageReader : virtual public ImageBase {
28 public:
29  ImageReader();
30 
31 protected:
32  virtual bool handle_args(Args &args);
33 
34 };
35 
36 #endif
37 
38 
This is the base class for a program that reads an image file, but doesn't write an image file...
Definition: imageReader.h:27
This specialization of ProgramBase is intended for programs that read and/or write a single image fil...
Definition: imageBase.h:34