source: trunk/packages/vizservers/nanovis/imgLoaders/BMPImageLoaderImpl.h @ 2974

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

Refactor texture classes, misc. cleanups, cut down on header pollution -- still
need to fix header deps in Makefile.in

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