Changeset 224 for trunk/include


Ignore:
Timestamp:
Feb 28, 2006 9:52:16 AM (18 years ago)
Author:
dkearney
Message:

added support for following functions in rappture core
diff
value
entities
added support for diff function in tcl bindings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/core/RpLibrary.h

    r205 r224  
    2222#include <time.h>
    2323
     24#include <list>
     25
    2426/* indentation size (in whitespaces) */
    2527#define INDENT_SIZE 4
    2628#define CREATE_PATH 1
    2729#define NO_CREATE_PATH 0
     30#define E_QUEUE_SIZE 100
    2831
    2932#ifndef _RpLIBRARY_H
     
    3841        RpLibrary* element (std::string path = "");
    3942        RpLibrary* parent (std::string path = "");
     43
     44        std::list<std::string> entities  (std::string path = "");
     45        std::list<std::string> value     (std::string path = "");
     46        std::list<std::string> diff      ( RpLibrary* otherLib,
     47                                            std::string path);
     48
    4049
    4150        // should return RpObject& but for simplicity right now it doesnt
     
    7887        std::string nodeComp();
    7988        std::string nodePath();
    80 
    81         int isvalid();
    8289
    8390        void result();
Note: See TracChangeset for help on using the changeset viewer.