source: trunk/packages/vizservers/nanovis/imgLoaders/ImageLoaderImpl.cpp @ 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: 377 bytes
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2#include "ImageLoaderImpl.h"
3#include <stdio.h>
4
5ImageLoaderImpl::ImageLoaderImpl()
6{
7}
8
9ImageLoaderImpl::~ImageLoaderImpl()
10{
11}
12
13Image* ImageLoaderImpl::load(const char* filename)
14{
15    Image* image = 0;
16    printf("abstrac function is called ImageLoaderImpl::load\n");
17    fflush(stdout);
18    return image;
19}
Note: See TracBrowser for help on using the repository browser.