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

Diff for /pegasus/src/Pegasus/Common/CIMFlavor.cpp between version 1.18 and 1.25

version 1.18, 2002/08/17 00:59:36 version 1.25, 2006/11/07 21:30:36
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // 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.;
   // 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.
   // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; Symantec 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 21 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author: Mike Brasher (mbrasher@bmc.com)  
 //  
 // Modified By: Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)  
 //              Carol Ann Krug Graves, Hewlett-Packard Company  
 //                (carolann_graves@hp.com)  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include "CIMFlavor.h" #include "CIMFlavor.h"
Line 46 
Line 48 
 const CIMFlavor CIMFlavor::DEFAULTS = OVERRIDABLE + TOSUBCLASS; const CIMFlavor CIMFlavor::DEFAULTS = OVERRIDABLE + TOSUBCLASS;
 // ATTN: P1 KS 24 March 2002 Change here to make TOINSTANCE part of the defaults // ATTN: P1 KS 24 March 2002 Change here to make TOINSTANCE part of the defaults
 //const CIMFlavor CIMFlavor::DEFAULTS = OVERRIDABLE + TOSUBCLASS + TOINSTANCE; //const CIMFlavor CIMFlavor::DEFAULTS = OVERRIDABLE + TOSUBCLASS + TOINSTANCE;
 const CIMFlavor CIMFlavor::ALL =  
                  OVERRIDABLE + TOSUBCLASS + TOINSTANCE + TRANSLATABLE +  
                  DISABLEOVERRIDE + RESTRICTED;  
  
  
 CIMFlavor::CIMFlavor () CIMFlavor::CIMFlavor ()
Line 114 
Line 113 
     String tmp;     String tmp;
  
     if (this->hasFlavor (CIMFlavor::OVERRIDABLE))     if (this->hasFlavor (CIMFlavor::OVERRIDABLE))
         tmp += "OVERRIDABLE ";          tmp.append("OVERRIDABLE ");
  
     if (this->hasFlavor (CIMFlavor::TOSUBCLASS))     if (this->hasFlavor (CIMFlavor::TOSUBCLASS))
         tmp += "TOSUBCLASS ";          tmp.append("TOSUBCLASS ");
  
     if (this->hasFlavor (CIMFlavor::TOINSTANCE))     if (this->hasFlavor (CIMFlavor::TOINSTANCE))
         tmp += "TOINSTANCE ";          tmp.append("TOINSTANCE ");
  
     if (this->hasFlavor (CIMFlavor::TRANSLATABLE))     if (this->hasFlavor (CIMFlavor::TRANSLATABLE))
         tmp += "TRANSLATABLE ";          tmp.append("TRANSLATABLE ");
  
     if (this->hasFlavor (CIMFlavor::DISABLEOVERRIDE))     if (this->hasFlavor (CIMFlavor::DISABLEOVERRIDE))
         tmp += "DISABLEOVERRIDE ";          tmp.append("DISABLEOVERRIDE ");
  
     if (this->hasFlavor (CIMFlavor::RESTRICTED))     if (this->hasFlavor (CIMFlavor::RESTRICTED))
         tmp += "RESTRICTED ";          tmp.append("RESTRICTED ");
  
     if (tmp.size ())     if (tmp.size ())
         tmp.remove (tmp.size () - 1);         tmp.remove (tmp.size () - 1);


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2