www.pudn.com > GaitRsystem.rar > pgm.h


/////////////////////////////////////////////////////////
//  PGM library by Daniel Switkin, utilities@switkin.com
//  Last revised: 5/01/99
//
//  You may do anything you like with this but you must
//  leave this comment in the source, and preferably
//  drop me an email if you use it.
/////////////////////////////////////////////////////////

#ifndef PGM_H
#define PGM_H

class PGM {
	public:
		PGM();
		bool New(char *name, int width, int height);
		bool Save();
		bool Load(char *name);
		~PGM();
		
		int height, width;
		unsigned char **data;
		char name[256];
};

#endif