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

Diff for /pegasus/src/Pegasus/Common/Attribute.cpp between version 1.1 and 1.5

version 1.1, 2004/09/27 18:38:01 version 1.5, 2006/01/30 16:16:46
Line 1 
Line 1 
 //%2003////////////////////////////////////////////////////////////////////////  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // 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.
   // 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 42 
Line 48 
  
 Attribute::~Attribute() Attribute::~Attribute()
 { {
     if(_vals.size()) {      if (_vals.size())
       {
         _vals.clear();         _vals.clear();
     }     }
 } }
  
 const Array <String> &  const Array<String>& Attribute::getValues() const
 Attribute::getValues() const  
 { {
     return _vals;     return _vals;
 } }
  
 const String &  const String& Attribute::getTag() const
 Attribute::getTag() const  
 { {
     return _tag;     return _tag;
 } }
  
 void  void Attribute::addValue(const String& value)
 Attribute::addValue(const String & value)  
 { {
     _vals.append(value);     _vals.append(value);
 } }
  
 PEGASUS_STD(ostream)& operator<<(PEGASUS_STD(ostream)& os, const Attribute& attr)  PEGASUS_STD(ostream)& operator<<(
       PEGASUS_STD(ostream)& os,
       const Attribute& attr)
 { {
     os << attr.getTag();     os << attr.getTag();
     Array <String> vals = attr.getValues();     Array <String> vals = attr.getValues();
     for(int i = 0; i < vals.size(); i++) {      for (int i = 0; i < vals.size(); i++)
         if(i == 0) {      {
           if(i == 0)
           {
             os << " = ";             os << " = ";
         } else {          }
           else
           {
             os << " | ";             os << " | ";
         }         }
         os << vals[i];         os << vals[i];


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