OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
ossimElevSourceFactory.cpp
Go to the documentation of this file.
1 //----------------------------------------------------------------------------
2 // FILE: ossimElevSourceFactory.cc
3 //
4 // Copyright (C) 2002 ImageLinks, Inc.
5 //
6 // License: LGPL
7 //
8 // See LICENSE.txt file in the top level directory for more details.
9 //
10 // Author: David Burken
11 //
12 // Description:
13 //
14 // Class definition for ossimElevSourceFactory.
15 //
16 // This is the base class interface for elevation source factories. Contains
17 // pure virtual methods that all elevation source factories must implement.
18 //
19 //----------------------------------------------------------------------------
20 // $Id: ossimElevSourceFactory.cpp 9094 2006-06-13 19:12:40Z dburken $
21 
23 
24 RTTI_DEF1(ossimElevSourceFactory, "ossimElevSourceFactory" , ossimObject)
25 
27  : theDirectory(ossimFilename::NIL)
28 {
29 }
30 
32 {
33 }
34 
36 {
37  return theDirectory;
38 }
39 
41 {
42  theDirectory = directory;
43 }
virtual ossimFilename getDirectory() const
virtual ~ossimElevSourceFactory()
virtual destructor
virtual void setDirectory(const ossimFilename &directory)
#define RTTI_DEF1(cls, name, b1)
Definition: ossimRtti.h:485