(file) Return to mofCompilerOptions.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Compiler

Diff for /pegasus/src/Pegasus/Compiler/mofCompilerOptions.h between version 1.21 and 1.22

version 1.21, 2005/02/05 23:00:05 version 1.22, 2005/02/16 00:10:08
Line 74 
Line 74 
   Array<String> _include_paths;   Array<String> _include_paths;
   Array<String> _filespecs;   Array<String> _filespecs;
   String       _repository;   String       _repository;
     String        _repository_name;
     String        _repository_mode;
   String                _namespacePath;   String                _namespacePath;
   Boolean         _syntax_only;   Boolean         _syntax_only;
   Boolean         _is_local;   Boolean         _is_local;
Line 93 
Line 95 
   PEGASUS_STD(ostream)      *_warningos;   PEGASUS_STD(ostream)      *_warningos;
  public:  public:
   mofCompilerOptions() : _repository(String::EMPTY),   mofCompilerOptions() : _repository(String::EMPTY),
       _repository_name(String::EMPTY),
       _repository_mode(String::EMPTY),
     _namespacePath(""),     _namespacePath(""),
     _syntax_only(false),     _syntax_only(false),
     _is_local(false),     _is_local(false),
Line 113 
Line 117 
   void add_filespecs(const String &spec) { _filespecs.append(spec); }   void add_filespecs(const String &spec) { _filespecs.append(spec); }
   const Array<String>& get_include_path_list() const {return _include_paths; }   const Array<String>& get_include_path_list() const {return _include_paths; }
   const Array<String>& get_filespec_list() const { return _filespecs; }   const Array<String>& get_filespec_list() const { return _filespecs; }
   void  set_repository_name(const String &repository) { \    void  set_repository(const String &repository) { \
     _repository = repository; }     _repository = repository; }
   const String &get_repository_name() const { return _repository; }    const String &get_repository() const { return _repository; }
     void  set_repository_name(const String &repository_name) { \
       _repository_name = repository_name; }
     const String &get_repository_name() const { return _repository_name; }
     void  set_repository_mode(const String &repository_mode) { \
       _repository_mode = repository_mode; }
     const String &get_repository_mode() const { return _repository_mode; }
   void set_syntax_only() { _syntax_only = true; }   void set_syntax_only() { _syntax_only = true; }
   void reset_syntax_only() { _syntax_only = false; }   void reset_syntax_only() { _syntax_only = false; }
   Boolean syntax_only() const { return _syntax_only; }   Boolean syntax_only() const { return _syntax_only; }


Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2