source: trunk/vizservers/nanovis/imgLoaders/ImageLoaderImpl.h @ 823

Last change on this file since 823 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: 339 bytes
Line 
1#ifndef __IMAGE_LOADER_IMPL_H__
2#define __IMAGE_LOADER_IMPL_H__
3
4#include <imgLoaders/Image.h>
5
6class ImageLoaderImpl {
7    friend class ImageLoader;
8
9protected :
10    Image::ImageFormat _targetImageFormat;
11
12public :
13    ImageLoaderImpl();
14    virtual ~ImageLoaderImpl();
15
16public :
17    virtual Image* load(const char* fileName);
18};
19
20#endif
Note: See TracBrowser for help on using the repository browser.