source: trunk/packages/vizservers/nanovis/imgLoaders/ImageLoaderImpl.cpp @ 2096

Last change on this file since 2096 was 2096, checked in by ldelgass, 13 years ago

Normalize line endings, set eol-style to native on *.cpp, *.h files

  • Property svn:eol-style set to native
File size: 311 bytes
Line 
1#include "ImageLoaderImpl.h"
2#include <stdio.h>
3
4ImageLoaderImpl::ImageLoaderImpl()
5{
6}
7
8ImageLoaderImpl::~ImageLoaderImpl()
9{
10}
11
12Image* ImageLoaderImpl::load(const char* filename)
13{
14    Image* image = 0;
15    printf("abstrac function is called ImageLoaderImpl::load\n");
16    fflush(stdout);
17    return image;
18}
Note: See TracBrowser for help on using the repository browser.