source: trunk/vizservers/nanovis/imgLoaders/BMPImageLoaderImpl.h @ 837

Last change on this file since 837 was 823, checked in by vrinside, 17 years ago

Image Loaders - BMP (Currently BMP loader was implmented)
For extensibility, Bridge/Singleton? Pattern was used

File size: 300 bytes
Line 
1#ifndef __BMP_IMAGE_LOADER_IMPL_H__
2#define __BMP_IMAGE_LOADER_IMPL_H__
3
4#include <imgLoaders/ImageLoaderImpl.h>
5
6class BMPImageLoaderImpl : public ImageLoaderImpl {
7public :
8    BMPImageLoaderImpl();
9    ~BMPImageLoaderImpl();
10
11public :
12    virtual Image* load(const char* fileName);
13
14};
15#endif //
Note: See TracBrowser for help on using the repository browser.