source: trunk/packages/vizservers/nanovis/imgLoaders/ImageLoaderImpl.h @ 2798

Last change on this file since 2798 was 2798, checked in by ldelgass, 12 years ago

Add emacs mode magic line in preparation for indentation cleanup

  • Property svn:eol-style set to native
File size: 394 bytes
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2#ifndef __IMAGE_LOADER_IMPL_H__
3#define __IMAGE_LOADER_IMPL_H__
4
5#include <Image.h>
6
7class ImageLoaderImpl {
8    friend class ImageLoader;
9
10protected :
11    Image::ImageFormat _targetImageFormat;
12
13public :
14    ImageLoaderImpl();
15    virtual ~ImageLoaderImpl();
16
17public :
18    virtual Image* load(const char* fileName);
19};
20
21#endif
Note: See TracBrowser for help on using the repository browser.