/*
* Image.h
* iphone-gl-app
*
* Created by John Ryland on 15/06/09.
* Copyright 2009 InvertedLogic. All rights reserved.
*
*/
#ifndef IMAGE_H
#define IMAGE_H
class Image
{
public:
Image(const char *file);
~Image();
unsigned int width();
unsigned int height();
unsigned char *data();
private:
void *dptr;
};
#endif // IMAGE_H