Commit b48b0232 authored by Jeannie Backer's avatar Jeannie Backer
Browse files

PROG: Fixed documentation. References #2262

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/trunk@6595 41f8697f-d340-4b68-9986-7bafba869bb8
parent 71ab22f4
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -128,6 +128,10 @@ namespace Isis {

  /**
   * This is a simple class to model a Calculator Variable Pool. 
   *  
   * @author 2012-07-15 Kris Becker
   * @internal
   *   @history 2012-07-15 Kris Becker - Original version.
   */
  class CalculatorVariablePool {
    public:
@@ -143,6 +147,10 @@ namespace Isis {
 
  /**
   * This is the parent class to the various function classes. 
   *  
   * @author 2012-07-15 Kris Becker
   * @internal
   *   @history 2012-07-15 Kris Becker - Original version.
   */  
  class FxBinder {
    public:
@@ -168,6 +176,10 @@ namespace Isis {
  /**
   * This class is used to bind function names with corresponding
   * InlineCalculator functions that do not take parameters. 
   *  
   * @author 2012-07-15 Kris Becker
   * @internal
   *   @history 2012-07-15 Kris Becker - Original version.
   */  
  class InlineVoidFx : public FxBinder {
    public:
@@ -188,6 +200,10 @@ namespace Isis {
  /**
   * This class is used to bind function names with corresponding Calculator
   * functions that take a parameter. 
   *  
   * @author 2012-07-15 Kris Becker
   * @internal
   *   @history 2012-07-15 Kris Becker - Original version.
   */  
  class ParameterFx : public FxBinder {
    public:
@@ -208,6 +224,10 @@ namespace Isis {
  /**
   * This class is used to bind function names with corresponding Calculator
   * functions that do not take parameters. 
   *  
   * @author 2012-07-15 Kris Becker
   * @internal
   *   @history 2012-07-15 Kris Becker - Original version.
   */  
  class VoidFx : public FxBinder {
    public:
+7 −1
Original line number Diff line number Diff line
@@ -130,7 +130,13 @@ namespace Isis {
      //! Defintion for VariantList, a map between a string and a variant type variable.
      typedef QMap<QString, QVariant> VariantList;

      /** Shared Resource data pointer */
      /** 
       * Shared Resource data pointer
       *  
       * @author 2012-07-15 Kris Becker 
       * @internal 
       *   @history 2012-07-15 Kris Becker - Original version.
       */
      class ResourceData : public QSharedData {
        public:
          ResourceData() : m_name("Resource"), m_keys(),