File: ppm_image.H

package info (click to toggle)
xjig 2.4-11.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 468 kB
  • ctags: 1,500
  • sloc: cpp: 4,887; makefile: 1,156; sh: 6; perl: 5
file content (15 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __ppm_image_h
#define __ppm_image_h

#include "base_image.H"

class ppmImage : public Image {
	public:
		ppmImage( const char *filename, int autocrop=1 );

	protected:
		int LoadImageFile(FILE *fp);
		int LoadImageFile(const char *fname) {return Image::LoadImageFile(fname);}
};

#endif