(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.28 and 1.29

version 1.28, 2007/09/03 04:29:57 version 1.29, 2007/12/14 19:01:09
Line 63 
Line 63 
 #include <Pegasus/Compiler/Linkage.h> #include <Pegasus/Compiler/Linkage.h>
 #include <iostream> #include <iostream>
  
 PEGASUS_USING_STD;  
 PEGASUS_USING_PEGASUS; PEGASUS_USING_PEGASUS;
  
 class PEGASUS_COMPILER_LINKAGE mofCompilerOptions { class PEGASUS_COMPILER_LINKAGE mofCompilerOptions {
Line 163 
Line 162 
   Boolean xml_output() const { return _emit_xml; }   Boolean xml_output() const { return _emit_xml; }
   void set_traceos(PEGASUS_STD(ostream) &os) { _traceos = &os; }   void set_traceos(PEGASUS_STD(ostream) &os) { _traceos = &os; }
   void reset_traceos() { _traceos = 0; }   void reset_traceos() { _traceos = 0; }
   ostream &traceos() const    PEGASUS_STD(ostream) &traceos() const
       { return _traceos ? (ostream&)*_traceos : (ostream&)cout; }    {
   void set_erroros(ostream &os) { _erroros = &os; }        return _traceos ? (PEGASUS_STD(ostream)&)*_traceos :
             (PEGASUS_STD(ostream)&)PEGASUS_STD(cout);
     }
     void set_erroros(PEGASUS_STD(ostream) &os) { _erroros = &os; }
   void reset_erroros() { _erroros = 0; }   void reset_erroros() { _erroros = 0; }
   ostream &erroros() const    PEGASUS_STD(ostream) &erroros() const
       { return _erroros ? (ostream&)*_erroros : (ostream&)cerr; }    {
   void set_warningos(ostream &os) { _warningos = &os; }        return _erroros ? (PEGASUS_STD(ostream)&)*_erroros :
             (PEGASUS_STD(ostream)&)PEGASUS_STD(cerr);
     }
     void set_warningos(PEGASUS_STD(ostream &os)) { _warningos = &os; }
   void reset_warningos() { _warningos = 0; }   void reset_warningos() { _warningos = 0; }
   ostream &warningos() const    PEGASUS_STD(ostream) &warningos() const
       {return _warningos ? (ostream&)*_warningos : (ostream&)cerr;}    {
         return _warningos ? (PEGASUS_STD(ostream)&)*_warningos :
             (PEGASUS_STD(ostream)&)PEGASUS_STD(cerr);
     }
   void set_namespacePath(const String &path) { _namespacePath = path; }   void set_namespacePath(const String &path) { _namespacePath = path; }
   const String &get_namespacePath() const  { return _namespacePath; }   const String &get_namespacePath() const  { return _namespacePath; }
   void set_no_usage_warning() { _no_usage_warning = true; }   void set_no_usage_warning() { _no_usage_warning = true; }


Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2