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

Diff for /pegasus/src/Pegasus/Common/CIMValue.h between version 1.4 and 1.11.2.1

version 1.4, 2001/04/25 22:20:55 version 1.11.2.1, 2001/07/26 21:07:31
Line 1 
Line 1 
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000 The Open Group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a  // Permission is hereby granted, free of charge, to any person obtaining a copy
 // copy of this software and associated documentation files (the "Software"),  // of this software and associated documentation files (the "Software"), to
 // to deal in the Software without restriction, including without limitation  // deal in the Software without restriction, including without limitation the
 // the rights to use, copy, modify, merge, publish, distribute, sublicense,  // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 // and/or sell copies of the Software, and to permit persons to whom the  // sell copies of the Software, and to permit persons to whom the Software is
 // Software is furnished to do so, subject to the following conditions:  // furnished to do so, subject to the following conditions:
 // //
 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL  // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER  // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING  // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 // DEALINGS IN THE SOFTWARE.  // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
   // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 // //
 //============================================================================== //==============================================================================
 // //
Line 28 
Line 29 
 #ifndef Pegasus_Value_h #ifndef Pegasus_Value_h
 #define Pegasus_Value_h #define Pegasus_Value_h
  
   #include <Pegasus/Common/String.h>
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #include <Pegasus/Common/CIMType.h> #include <Pegasus/Common/CIMType.h>
 #include <Pegasus/Common/String.h>  
 #include <Pegasus/Common/CIMDateTime.h> #include <Pegasus/Common/CIMDateTime.h>
 #include <Pegasus/Common/Union.h> #include <Pegasus/Common/Union.h>
 #include <Pegasus/Common/Array.h> #include <Pegasus/Common/Array.h>
Line 170 
Line 171 
     */     */
     Boolean isArray() const { return _isArray; }     Boolean isArray() const { return _isArray; }
  
       /** Returns whether value is null.
       */
       Boolean isNull() const { return _isNull; }
   
     /** CIMMethod getArraySize     /** CIMMethod getArraySize
         @return The number of entries in the array         @return The number of entries in the array
     */     */
Line 304 
Line 309 
  
     void get(Array<CIMDateTime>& x) const;     void get(Array<CIMDateTime>& x) const;
  
     /// CIMMethod toXML  - ATTN      /** CIMMethod toXML
   
       */
     void toXml(Array<Sint8>& out) const;     void toXml(Array<Sint8>& out) const;
  
     /// CIMMethod print - ATTN      /** CIMMethod print - Format and print the Value to std output
     void print(std::ostream &o=std::cout) const;          stream
           @return None
           <PRE>
           Example:
               CIMValue value(Boolean(true));
               value.print();        // Prints "true"
           </PRE>
       */
       void print(PEGASUS_STD(ostream) &o=PEGASUS_STD(cout)) const;
  
     /// CIMMethod toString      - ATTN      /** toString - Converts the CIMvalue to a string
           @return - String output for CIMValue.
           <PRE>
           Example:
               String test;
               CIMValue value(Boolean(true));
               test = value.toString();      // puts "true" into test
           </PRE>
           */
     String toString() const;     String toString() const;
  
 private: private:
Line 319 
Line 342 
  
     CIMType _type;     CIMType _type;
     Boolean _isArray;     Boolean _isArray;
       Boolean _isNull;
     Union _u;     Union _u;
  
     friend class CIMMethodRep;     friend class CIMMethodRep;
Line 338 
Line 362 
     return !operator==(x, y);     return !operator==(x, y);
 } }
  
   #define PEGASUS_ARRAY_T CIMValue
   # include "ArrayInter.h"
   #undef PEGASUS_ARRAY_T
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END
  
 #endif /* Pegasus_Value_h */ #endif /* Pegasus_Value_h */


Legend:
Removed from v.1.4  
changed lines
  Added in v.1.11.2.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2