Changeset 125 for trunk/examples


Ignore:
Timestamp:
Nov 4, 2005 3:19:11 PM (18 years ago)
Author:
dkearney
Message:

1) removed "as" string from c++'s element() function because
the function does not have the capacity to return anything
other than RpLibrary? Instances
2) changed get() functions in library module to return strings.
this change was propagated to matlab, octave, c, fortran, c++
bindings.
3) fixed rpFreeLibrary inside of c interface, now function accepts
a pointer to a pointer to RpLibrary? (lib) and sets *lib equal to
null
4) added doxygen target to makefile. (make docs), to get graphics
you need the program named dot (debian: apt-get install graphviz)
otherwise you will get errors for the portion of the proceedure
where it is trying to create the graphics.

Location:
trunk/examples/c-example
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/c-example/plotc.c

    r115 r125  
    106106
    107107    // free the rappture library
    108     rpFreeLibrary(lib);
     108    rpFreeLibrary(&lib);
    109109
    110110    // exit program
  • trunk/examples/c-example/tool.xml

    r90 r125  
    44        <title>SIN(x) Graph</title>
    55        <about>Press Simulate to view results.</about>
    6         <command> @tool/plotc @driver</command>
     6        <command> @tool/plot @driver</command>
    77    </tool>
    88    <input>
Note: See TracChangeset for help on using the changeset viewer.