(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.5 and 1.11.2.3

version 1.5, 2001/05/20 20:33:59 version 1.11.2.3, 2001/11/15 20:15:24
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 170 
Line 171 
     */     */
     Boolean isArray() const { return _isArray; }     Boolean isArray() const { return _isArray; }
  
       /** Returns whether the CIMvalue object is null.
           Null is the specific condition where no value has
           yet been set into the value.
           If a CIMValue object is Null, any get on that object
           will create an exception.
           @return Returns True if the CIMValue object 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 314 
  
     void get(Array<CIMDateTime>& x) const;     void get(Array<CIMDateTime>& x) const;
  
     /// CIMMethod toXML  - ATTN      /** toXML - Converts a CIMValue object to XML.
           @out Sint8 Array to hold the XML representation
           @return Returns the XML representation of the CIMValue
           object in the input parameter out.
       */
     void toXml(Array<Sint8>& out) const;     void toXml(Array<Sint8>& out) const;
  
     /// CIMMethod print - ATTN      /** toXML - Converts a CIMValue object to XML.
           @return Returns the XML representation of the CIMValue
           object in String form.
       */
       String toXml() const;
   
       /** CIMMethod print - Format and print the Value to std output
           stream
           @return None
           <PRE>
           Example:
               CIMValue value(Boolean(true));
               value.print();        // Prints "true"
           </PRE>
       */
     void print(PEGASUS_STD(ostream) &o=PEGASUS_STD(cout)) const;     void print(PEGASUS_STD(ostream) &o=PEGASUS_STD(cout)) const;
  
     /// CIMMethod toString      - ATTN      /** toMof - Converts a CIMValueObject to Mof.
           @out Sint8 Array to hold the Mof representation
           @return Returns the Mof representation of the CIMValue
           object in the input parameter out.
       */
       void toMof(Array<Sint8>& out) const;
   
   
       /** toString - Converts the CIMvalue to a string.  Should only be
               used for output purposes.  To get an actual String value, use
               get(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 365 
  
     CIMType _type;     CIMType _type;
     Boolean _isArray;     Boolean _isArray;
       Boolean _isNull;
     Union _u;     Union _u;
  
     friend class CIMMethodRep;     friend class CIMMethodRep;
Line 338 
Line 385 
     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.5  
changed lines
  Added in v.1.11.2.3

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2