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

Diff for /pegasus/src/Pegasus/Common/ObjectNormalizer.h between version 1.1 and 1.5

version 1.1, 2004/05/27 22:11:48 version 1.5, 2005/01/26 02:23:10
Line 1 
Line 1 
 //%2003////////////////////////////////////////////////////////////////////////  //%2004////////////////////////////////////////////////////////////////////////
 // //
 // 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.
 // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L. P.; // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L. P.;
 // 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.;
   // 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 34 
Line 36 
  
 #include <Pegasus/Common/CIMClass.h> #include <Pegasus/Common/CIMClass.h>
 #include <Pegasus/Common/CIMInstance.h> #include <Pegasus/Common/CIMInstance.h>
 #include <Pegasus/Common/CIMIndication.h>  
 #include <Pegasus/Common/CIMProperty.h>  
 #include <Pegasus/Common/CIMMethod.h>  
 #include <Pegasus/Common/CIMParameter.h>  
 #include <Pegasus/Common/CIMQualifier.h>  
 #include <Pegasus/Common/String.h> #include <Pegasus/Common/String.h>
 #include <Pegasus/Common/DeclContext.h>  
 #include <Pegasus/Common/Linkage.h>  
  
 #include <Pegasus/Repository/CIMRepository.h>  #include <Pegasus/Common/Linkage.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
Line 51 
Line 46 
 class PEGASUS_COMMON_LINKAGE ObjectNormalizer class PEGASUS_COMMON_LINKAGE ObjectNormalizer
 { {
 public: public:
     ObjectNormalizer(CIMRepository & repository);      ObjectNormalizer(
   
     CIMClass normalizeClass(  
         const CIMClass & cimClass,         const CIMClass & cimClass,
         const Boolean localOnly,         const Boolean localOnly,
         const Boolean includeQualifiers,         const Boolean includeQualifiers,
         const Boolean includeClassOrigin,          const Boolean includeClassOrigin);
         const CIMPropertyList & propertyList);  
  
     CIMInstance normalizeInstance(      CIMObjectPath processClassObjectPath(const CIMObjectPath & cimObjectPath) const;
         const CIMInstance & cimInstance,      CIMObjectPath processInstanceObjectPath(const CIMObjectPath & cimObjectPath) const;
         const Boolean localOnly,  
         const Boolean includeQualifiers,  
         const Boolean includeClassOrigin,  
         const CIMPropertyList & propertyList);  
  
     Array<CIMInstance> normalizeInstances(      //CIMClass processClass(const CIMClass & cimClass) const;
         const Array<CIMInstance> & cimInstances,      CIMInstance processInstance(const CIMInstance & cimInstance) const;
         const Boolean localOnly,      //CIMIndication processIndication(const CIMIndication & cimIndication);
         const Boolean includeQualifiers,  
         const Boolean includeClassOrigin,  
         const CIMPropertyList & propertyList);  
   
     CIMIndication normalizeIndication(  
         const CIMIndication & cimIndication,  
         const Boolean localOnly,  
         const Boolean includeQualifiers,  
         const Boolean includeClassOrigin,  
         const CIMPropertyList & propertyList);  
  
 private: private:
     CIMRepository & _repository;      CIMClass _cimClass;
   
       Boolean _localOnly;
       Boolean _includeQualifiers;
       Boolean _includeClassOrigin;
  
 }; };
  


Legend:
Removed from v.1.1  
changed lines
  Added in v.1.5

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2