Isis Developer Reference
NormModelFactory.h
Go to the documentation of this file.
1 #ifndef NormModelFactory_h
2 #define NormModelFactory_h
3 
9 /* SPDX-License-Identifier: CC0-1.0 */
10 
11 namespace Isis {
12  class Pvl;
13  class PhotoModel;
14  class AtmosModel;
15  class NormModel;
16 
53  public:
54  static NormModel *Create(Pvl &pvl, PhotoModel &pmodel);
55  static NormModel *Create(Pvl &pvl, PhotoModel &pmodel, AtmosModel &amodel);
56 
57  private:
62  NormModelFactory() {};
63 
65  ~NormModelFactory() {};
66  };
67 };
68 
69 #endif
FileName.h
Plugin.h
Isis::PhotoModel
Definition: PhotoModel.h:41
Isis::FileName
File name manipulation and expansion.
Definition: FileName.h:100
Isis::FileName::fileExists
bool fileExists() const
Returns true if the file exists; false otherwise.
Definition: FileName.cpp:449
Isis::AtmosModel
Isotropic atmos scattering model.
Definition: AtmosModel.h:60
Isis::PvlContainer::hasKeyword
bool hasKeyword(const QString &name) const
Check to see if a keyword exists.
Definition: PvlContainer.cpp:159
Isis::Pvl
Container for cube-like labels.
Definition: Pvl.h:119
Isis::NormModelFactory::Create
static NormModel * Create(Pvl &pvl, PhotoModel &pmodel)
Create a NormModel object using a PVL specification.
Definition: NormModelFactory.cpp:36
NormModelFactory.h
Isis::PvlObject::Traverse
@ Traverse
Search child objects.
Definition: PvlObject.h:158
Isis::NormModel
Definition: NormModel.h:36
Isis::PvlGroup
Contains multiple PvlContainers.
Definition: PvlGroup.h:41
_FILEINFO_
#define _FILEINFO_
Macro for the filename and line number.
Definition: IException.h:24
Isis::Pvl::read
void read(const QString &file)
Loads PVL information from a stream.
Definition: Pvl.cpp:90
Isis::PvlObject::findObject
PvlObjectIterator findObject(const QString &name, PvlObjectIterator beg, PvlObjectIterator end)
Find the index of object with a specified name, between two indexes.
Definition: PvlObject.h:274
Isis::Plugin::GetPlugin
QFunctionPointer GetPlugin(const QString &group)
This method returns a void pointer to a C function (i.e., the plugin) It does this by looking in itse...
Definition: Plugin.cpp:39
Isis::NormModelFactory
This class is used to create NormModel objects.
Definition: NormModelFactory.h:52
NormModel.h
Isis::IException
Isis exception class.
Definition: IException.h:91
IException.h
Isis::IString
Adds specific functionality to C++ strings.
Definition: IString.h:165
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
Isis::IException::User
@ User
A type of error that could only have occurred due to a mistake on the user's part (e....
Definition: IException.h:126
Isis::Plugin
Loads plugins from a shared library.
Definition: Plugin.h:55