Commit 769d7ea1 authored by Summer Stapleton's avatar Summer Stapleton
Browse files

A few modifications to commenting

parent 76e142b2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
+2 −2
Original line number Diff line number Diff line
@@ -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;
+14 −0
Original line number Diff line number Diff line
@@ -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) {
@@ -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));
@@ -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) {
@@ -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));
+1 −1
Original line number Diff line number Diff line
@@ -173,7 +173,7 @@ namespace Isis {
      QUuid *m_id;
      
      /**
       * The target body.
       * The TargetName as it appears in the original cube.
       */
      QString m_targetName;