Commit a951c76e authored by Christopher Combs's avatar Christopher Combs
Browse files

Prog: Removed warnings on documentation for Pixel. References #4807

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/trunk@7815 41f8697f-d340-4b68-9986-7bafba869bb8
parent ff5066f4
Loading
Loading
Loading
Loading
+45 −39
Original line number Diff line number Diff line
@@ -72,7 +72,13 @@ namespace Isis {
  }


  //! Copy assignment operator 
  /**
   * Copy assignment operator
   *
   * @param other Pixel the Pixel to be copied
   *
   * @return Pixel Pointer to self
   */
  Pixel &Pixel::operator=(const Pixel& other) {
    m_line = other.line();
    m_sample = other.sample();
@@ -86,25 +92,25 @@ namespace Isis {
  Pixel::~Pixel() {}


  //! Returns the line coordinate of the Pixel
  //! @return int The line coordinate of the Pixel
  int Pixel::line() const {
    return m_line;
  }


  //! Returns the sample coordinate of the Pixel
  //! @return int The sample coordinate of the Pixel
  int Pixel::sample() const {
    return m_sample;
  }


  //! Returns the band coordinate of the Pixel
  //! @return int The band coordinate of the Pixel
  int Pixel::band() const {
    return m_band;
  }


  //! Returns the DN of the Pixel
  //! @return double The DN value of the Pixel
  double Pixel::DN() const {
    return m_DN;
  }
+22 −23
Original line number Diff line number Diff line
@@ -67,6 +67,7 @@ namespace Isis {
      Pixel(const Pixel& pixel);
      virtual ~Pixel();


      Pixel &operator=(const Pixel& other);

      int line() const;
@@ -209,8 +210,6 @@ namespace Isis {
     /**
       * Returns true if the input pixel is one of the low saturation types
       *
       * @param d Pixel value to test
       *
       * @return bool
       */
      bool IsLow() {