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

Diff for /pegasus/src/Pegasus/Common/Union.h between version 1.18 and 1.20

version 1.18, 2004/11/29 18:48:20 version 1.20, 2005/10/31 18:19:27
Line 1 
Line 1 
 //%2004////////////////////////////////////////////////////////////////////////  //%2005////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems. // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
Line 6 
Line 6 
 // IBM Corp.; EMC Corporation, The Open Group. // IBM Corp.; EMC Corporation, The Open Group.
 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.; // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
 // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group. // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; VERITAS Software Corporation; The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 45 
Line 47 
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
   struct StringRep;
   
 /** This union is used to represent the values of properties, qualifiers, /** This union is used to represent the values of properties, qualifiers,
     method return values, and method arguments. All of the types     method return values, and method arguments. All of the types
     defined in CIMType.h are represented by a Union. The     defined in CIMType.h are represented by a Union. The
Line 64 
Line 68 
     Real32 _real32Value;     Real32 _real32Value;
     Real64 _real64Value;     Real64 _real64Value;
     Uint16 _char16Value;     Uint16 _char16Value;
     String* _stringValue;      char _stringValue[sizeof(String)];
     CIMDateTime* _dateTimeValue;     CIMDateTime* _dateTimeValue;
     CIMObjectPath* _referenceValue;     CIMObjectPath* _referenceValue;
     CIMObject* _objectValue;     CIMObject* _objectValue;
Line 81 
Line 85 
     Array<Real32>* _real32Array;     Array<Real32>* _real32Array;
     Array<Real64>* _real64Array;     Array<Real64>* _real64Array;
     Array<Char16>* _char16Array;     Array<Char16>* _char16Array;
     Array<String>* _stringArray;      char _stringArray[sizeof(Array<String>)];
     Array<CIMDateTime>* _dateTimeArray;     Array<CIMDateTime>* _dateTimeArray;
     Array<CIMObjectPath>* _referenceArray;     Array<CIMObjectPath>* _referenceArray;
     Array<CIMObject>* _objectArray;     Array<CIMObject>* _objectArray;


Legend:
Removed from v.1.18  
changed lines
  Added in v.1.20

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2