Isis Developer Reference
PhotoModelFactory.h
Go to the documentation of this file.
1 #ifndef PhotoModelFactory_h
2 #define PhotoModelFactory_h
3 
8 /* SPDX-License-Identifier: CC0-1.0 */
9 
10 namespace Isis {
11  class Pvl;
12  class PhotoModel;
13 
51  public:
52  static PhotoModel *Create(Pvl &pvl);
53 
54  private:
59  PhotoModelFactory() {};
60 
62  ~PhotoModelFactory() {};
63  };
64 };
65 
66 #endif
FileName.h
Plugin.h
Isis::PhotoModel
Definition: PhotoModel.h:41
Isis::PhotoModelFactory
This class is used to create PhotoModel objects.
Definition: PhotoModelFactory.h:50
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
PhotoModel.h
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::PvlObject::Traverse
@ Traverse
Search child objects.
Definition: PvlObject.h:158
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::PhotoModelFactory::Create
static PhotoModel * Create(Pvl &pvl)
Create a PhotoModel object using a PVL specification.
Definition: PhotoModelFactory.cpp:35
PhotoModelFactory.h
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::IException
Isis exception class.
Definition: IException.h:91
IException.h
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