Isis 3 Programmer Reference
InlineCalculator.h File Reference
#include "Calculator.h"
#include <QList>
#include <QMap>
#include <QString>
#include <QVector>

Go to the source code of this file.

Classes

class  Isis::InlineCalculator
 Provides a calculator for inline equations. More...
 
class  Isis::CalculatorVariablePool
 This is a simple class to model a Calculator Variable Pool. More...
 
class  Isis::FxBinder
 This is the parent class to the various function classes. More...
 
class  Isis::InlineVoidFx
 This class is used to bind function names with corresponding InlineCalculator functions that do not take parameters. More...
 
class  Isis::ParameterFx
 This class is used to bind function names with corresponding Calculator functions that take a parameter. More...
 
class  Isis::VoidFx
 This class is used to bind function names with corresponding Calculator functions that do not take parameters. More...
 

Namespaces

 Isis
 Namespace for ISIS/Bullet specific routines.
 

Macros

#define CALL_MEMBER_FN(object, ptrToMember)   ((object).*(ptrToMember))
 Macro for calling member functions. More...
 

Functions

double Isis::floatModulusOperator (double a, double b)
 Determines the remainder of the quotient a/b whose sign is the same as that of a. More...
 

Detailed Description

Revision
6129
Date
2015-04-02 10:42:32 -0700 (Thu, 02 Apr 2015)
Id
InlineCalculator.h 6129 2015-04-02 17:42:32Z jwbac.nosp@m.ker@.nosp@m.GS.DO.nosp@m.I.NE.nosp@m.T

Unless noted otherwise, the portions of Isis written by the USGS are public domain. See individual third-party library and package descriptions for intellectual property information, user agreements, and related information.

Although Isis has been used by the USGS, no warranty, expressed or implied, is made by the USGS as to the accuracy and functioning of such software and related material nor shall the fact of distribution constitute any such warranty, and no responsibility is assumed by the USGS in connection therewith.

For additional information, launch $ISISROOT/doc//documents/Disclaimers/Disclaimers.html in a browser or see the Privacy & Disclaimers page on the Isis website, http://isis.astrogeology.usgs.gov, and the USGS privacy and disclaimers on http://www.usgs.gov/privacy.html.

Definition in file InlineCalculator.h.

Macro Definition Documentation

◆ CALL_MEMBER_FN

#define CALL_MEMBER_FN (   object,
  ptrToMember 
)    ((object).*(ptrToMember))

Macro for calling member functions.

Read all about it at http://www.parashift.com/c++-faq/pointers-to-members.html.

Definition at line 49 of file InlineCalculator.h.

Referenced by Isis::InlineVoidFx::dispatch(), Isis::ParameterFx::dispatch(), and Isis::VoidFx::dispatch().