openModeller  Version 1.5.0
Projector.hh
Go to the documentation of this file.
1 
29 #ifndef _PROJECTOR_HH_
30 #define _PROJECTOR_HH_
31 
32 #include <openmodeller/om_defs.hh>
35 #include <openmodeller/Model.hh>
37 
38 #include <string>
39 
40 class RasterFile;
41 class AreaStats;
42 
43 class dllexp Projector {
44 
45 public:
46 
49  static bool createMap( const Model& model,
50  const EnvironmentPtr& env,
51  Map *map,
52  AreaStats *areaStats = 0,
53  CallbackWrapper *callbackWrapper = 0 );
54 
55 private:
56  // Don't allow construction.
57  Projector();
58 
59 };
60 
61 #endif
Definition: Map.hh:49