wiki:RpNumber

Version 3 (modified by dkearney, 19 years ago) (diff)

--

RpNumber

The RpNumber is a class derived from the RpVariable class. A RpNumber contains the following data members:

The RpNumber class allows the user to define a rappture number object, setting the key values needed to create a gui from Rappture generated XML. All information is stored in the RpNumber object until it needs to be written to the XML file using the put() member function. The form of the resultant xml should follow that specified in Number

How to use:

  • check out the example use in the test program RpNumber_test.cc in the svn repository.
    1. The program is located in the test directory, read and understand it.
    2. You can compile the program by going to the source directory (src) and issuing the command make test.
    3. Go to the bin directory and run the program ./RpNumber_test
  • check out the header file for the class, located in the include/core directory
  • check out the class definition located in the src/core directory
  • to include this class into your application:
    1. Go to the src directory
    2. Issue command make libRpNumber
    3. Compile your application against the shared object library libRpNumber, which will be located in the lib directory

Design Comments / Considerations / Future Changes: