source: trunk/packages/vizservers/nanovis/dxReader.h @ 2846

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

Move declarations of dx volume loading functions to separate headers, remove
unused structs from nanovis.h and reorganize static NanoVis? class member
declarations.

  • Property svn:eol-style set to native
File size: 413 bytes
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2#ifndef DXREADER_H
3#define DXREADER_H
4
5namespace Rappture {
6    class Outcome;
7}
8class Volume;
9
10extern Volume *
11load_volume_stream(Rappture::Outcome& status, const char *tag,
12                   std::iostream& fin);
13
14extern Volume *
15load_volume_stream2(Rappture::Outcome& status, const char *tag,
16                    std::iostream& fin);
17
18#endif
Note: See TracBrowser for help on using the repository browser.