IsisDlm  Version 0.2
PropagationHandler.h
Go to the documentation of this file.
1 
2 //_Title PropagationHandler.h Definition of basic ISIS support structure
3 //
4 //_Descr ISIS3 file/functionality definition.
5 //
6 //_Hist Jul 24 2004 Kris Becker, USGS
7 //_Version: $Id: PropagationHandler.h,v 1.2 2004/11/02 15:38:53 kbecker Exp $
8 //_End
10 
11 #if !defined(PropagationHandler_h)
12 #define PropagationHandler_h
13 #include "Cube.h"
14 #include "Pvl.h"
15 
16 
17 namespace ISISDLM {
18 
24  public:
26  virtual ~PropagationHandler() { }
27 
28  void setBlobCopy(bool doit = true);
29  void Propagate(Isis::Cube &src, Isis::Cube &target);
30 
31  private:
32  bool copy_blobs;
33  };
34 
35  }
36  #endif