Update of /cvsroot/jsoncpp/jsoncpp/include/json
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11379/include/json
Modified Files:
json_value.h
Log Message:
* added rough implementation of Path::resolve() & Path::make()
Index: json_value.h
===================================================================
RCS file: /cvsroot/jsoncpp/jsoncpp/include/json/json_value.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** json_value.h 27 Jul 2005 07:09:23 -0000 1.1.1.1
--- json_value.h 27 Jul 2005 07:38:15 -0000 1.2
***************
*** 207,210 ****
--- 207,215 ----
const PathArgument &a5 = PathArgument() );
+ const Value &resolve( const Value &root ) const;
+ Value resolve( const Value &root,
+ const Value &defaultValue ) const;
+ Value &make( Value &root ) const;
+
private:
typedef std::vector<const PathArgument *> InArgs;
|