Panda3D
 All Classes Functions Variables Enumerations
imageFilter.h
1 // Filename: imageFilter.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 IMAGEFILTER_H
16 #define IMAGEFILTER_H
17 
18 #include "pandatoolbase.h"
19 
20 #include "imageReader.h"
21 #include "imageWriter.h"
22 
23 ////////////////////////////////////////////////////////////////////
24 // Class : ImageFilter
25 // Description : This is the base class for a program that reads an
26 // image file, operates on it, and writes another image
27 // file out.
28 ////////////////////////////////////////////////////////////////////
29 class ImageFilter : public ImageReader, public ImageWriter {
30 public:
31  ImageFilter(bool allow_last_param);
32 
33 protected:
34  virtual bool handle_args(Args &args);
35 };
36 
37 #endif
38 
39 
This is the base class for a program that reads an image file, operates on it, and writes another ima...
Definition: imageFilter.h:29
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 is the base class for a program that generates an image file output, but doesn't read any for in...
Definition: imageWriter.h:29