Loading isis/src/base/objs/Camera/Camera.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -2883,7 +2883,7 @@ namespace Isis { /** * This method returns the InstrumentId as it appears in the cube. * * @return QString * @return QString Returns m_instrumentId */ QString Camera::instrumentId() { return m_instrumentId; Loading isis/src/qisis/objs/GuiCamera/GuiCamera.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -301,8 +301,8 @@ namespace Isis { /** * @brief Retrieves an abbreviated version for the name of the instrument. * @return @b QString Returns m_instrumentNameShort. * @brief Retrieve the InstrumentId as appears in the original cube label. * @return @b QString Returns m_instrumentId */ QString GuiCamera::instrumentId() { return m_instrumentId; Loading isis/src/qisis/objs/Project/Project.cpp +14 −0 Original line number Diff line number Diff line Loading @@ -2689,6 +2689,8 @@ namespace Isis { /** * @brief This method checks for the existence of a target based on TargetName * * @param id The target string to be compared. * @return bool Returns true if targetBody already exists in project */ bool Project::hasTarget(QString id) { foreach (TargetBodyQsp targetBody, *m_targets) { Loading @@ -2700,6 +2702,11 @@ namespace Isis { } /** * Adds a new target to the project. * * @param target The target to be added. */ void Project::addTarget(Target *target) { TargetBodyQsp targetBody = TargetBodyQsp(new TargetBody(target)); Loading @@ -2712,6 +2719,8 @@ namespace Isis { /** * @brief This method checks for the existence of a camera based on InstrumentId * * @param id The instrument string to be compared. * @return bool Returns true if GuiCamera already exists in project */ bool Project::hasCamera(QString id) { foreach (GuiCameraQsp camera, *m_guiCameras) { Loading @@ -2724,6 +2733,11 @@ namespace Isis { } /** * Adds a new camera to the project. * * @param camera The camera to be added. */ void Project::addCamera(Camera *camera) { GuiCameraQsp guiCamera = GuiCameraQsp(new GuiCamera(camera)); Loading isis/src/qisis/objs/TargetBody/TargetBody.h +1 −1 Original line number Diff line number Diff line Loading @@ -173,7 +173,7 @@ namespace Isis { QUuid *m_id; /** * The target body. * The TargetName as it appears in the original cube. */ QString m_targetName; Loading Loading
isis/src/base/objs/Camera/Camera.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -2883,7 +2883,7 @@ namespace Isis { /** * This method returns the InstrumentId as it appears in the cube. * * @return QString * @return QString Returns m_instrumentId */ QString Camera::instrumentId() { return m_instrumentId; Loading
isis/src/qisis/objs/GuiCamera/GuiCamera.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -301,8 +301,8 @@ namespace Isis { /** * @brief Retrieves an abbreviated version for the name of the instrument. * @return @b QString Returns m_instrumentNameShort. * @brief Retrieve the InstrumentId as appears in the original cube label. * @return @b QString Returns m_instrumentId */ QString GuiCamera::instrumentId() { return m_instrumentId; Loading
isis/src/qisis/objs/Project/Project.cpp +14 −0 Original line number Diff line number Diff line Loading @@ -2689,6 +2689,8 @@ namespace Isis { /** * @brief This method checks for the existence of a target based on TargetName * * @param id The target string to be compared. * @return bool Returns true if targetBody already exists in project */ bool Project::hasTarget(QString id) { foreach (TargetBodyQsp targetBody, *m_targets) { Loading @@ -2700,6 +2702,11 @@ namespace Isis { } /** * Adds a new target to the project. * * @param target The target to be added. */ void Project::addTarget(Target *target) { TargetBodyQsp targetBody = TargetBodyQsp(new TargetBody(target)); Loading @@ -2712,6 +2719,8 @@ namespace Isis { /** * @brief This method checks for the existence of a camera based on InstrumentId * * @param id The instrument string to be compared. * @return bool Returns true if GuiCamera already exists in project */ bool Project::hasCamera(QString id) { foreach (GuiCameraQsp camera, *m_guiCameras) { Loading @@ -2724,6 +2733,11 @@ namespace Isis { } /** * Adds a new camera to the project. * * @param camera The camera to be added. */ void Project::addCamera(Camera *camera) { GuiCameraQsp guiCamera = GuiCameraQsp(new GuiCamera(camera)); Loading
isis/src/qisis/objs/TargetBody/TargetBody.h +1 −1 Original line number Diff line number Diff line Loading @@ -173,7 +173,7 @@ namespace Isis { QUuid *m_id; /** * The target body. * The TargetName as it appears in the original cube. */ QString m_targetName; Loading