--- parser3/src/include/pa_request.h 2001/07/13 12:13:50 1.92 +++ parser3/src/include/pa_request.h 2001/09/24 14:34:25 1.97 @@ -5,7 +5,7 @@ Author: Alexander Petrosyan (http://design.ru/paf) - $Id: pa_request.h,v 1.92 2001/07/13 12:13:50 parser Exp $ + $Id: pa_request.h,v 1.97 2001/09/24 14:34:25 parser Exp $ */ #ifndef PA_REQUEST_H @@ -81,10 +81,10 @@ public: BEWARE: may throw exception to you: catch it! */ void core( - const char *root_auto_path, ///< path to system auto.p file - bool root_auto_fail, ///< fail if system auto.p file not found - const char *site_auto_path, ///< path to site auto.p file - bool site_auto_fail, ///< fail if site auto.p file not found + const char *root_config_filespec, ///< system config filespec + bool root_config_fail_on_read_problem, ///< fail if system config file not found + const char *site_config_filespec, ///< site config filespec + bool site_config_fail_on_read_problem, ///< fail if site config file not found bool header_only); /// executes ops @@ -92,7 +92,8 @@ public: /// compiles the file, maybe forcing it's class @a name and @a base_class. VStateless_class *use_file( - const String& file_spec, bool fail_on_read_problem=true, + const String& file_name, + bool ignore_class_path=false, bool fail_on_read_problem=true, const String *name=0, VStateless_class *base_class=0); // core.C /// compiles a @a source buffer @@ -205,7 +206,7 @@ private: // execute.C const Method& method, bool return_cstr=true); const String *execute_virtual_method(Value& aself, const String& method_name, bool return_cstr=true); - const String *execute_nonvirtual_method(VStateless_class& aself, + const String *execute_nonvirtual_method(VStateless_class& aclass, const String& method_name, bool return_cstr=true); Value *get_element();