Initial Stable Commit
[synfig.git] / synfig-core / trunk / src / modules / mod_ppm / mptr_ppm.h
1 /*! ========================================================================
2 ** Sinfg
3 ** Template Header File
4 ** $Id: mptr_ppm.h,v 1.1.1.1 2005/01/04 01:23:14 darco Exp $
5 **
6 ** Copyright (c) 2002 Robert B. Quattlebaum Jr.
7 **
8 ** This software and associated documentation
9 ** are CONFIDENTIAL and PROPRIETARY property of
10 ** the above-mentioned copyright holder.
11 **
12 ** You may not copy, print, publish, or in any
13 ** other way distribute this software without
14 ** a prior written agreement with
15 ** the copyright holder.
16 **
17 ** === N O T E S ===========================================================
18 **
19 ** ========================================================================= */
20
21 /* === S T A R T =========================================================== */
22
23 #ifndef __SINFG_MPTR_PPM_H
24 #define __SINFG_MPTR_PPM_H
25
26 /* === H E A D E R S ======================================================= */
27
28 #include <sinfg/importer.h>
29 #include <sinfg/string.h>
30
31 /* === M A C R O S ========================================================= */
32
33 /* === T Y P E D E F S ===================================================== */
34
35 /* === C L A S S E S & S T R U C T S ======================================= */
36
37 class ppm_mptr : public sinfg::Importer
38 {
39         SINFG_IMPORTER_MODULE_EXT
40 private:
41         sinfg::String filename;
42 public:
43         ppm_mptr(const char *filename);
44         ~ppm_mptr();
45
46         virtual bool get_frame(sinfg::Surface &,sinfg::Time, sinfg::ProgressCallback *);
47 }; // END of class ppm_mptr
48
49 /* === E N D =============================================================== */
50
51 #endif