(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.2 and 1.7

version 1.2, 2004/10/17 20:39:16 version 1.7, 2006/11/10 18:14:57
Line 1 
Line 1 
 //%2004////////////////////////////////////////////////////////////////////////  //%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.
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.
   // 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 25 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author: Tony Fiorentino (fiorentino_tony@emc.com)  
 //  
 // Modified By: Keith Petley (keithp@veritas.com)  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include "Attribute.h" #include "Attribute.h"
Line 44 
Line 44 
  
 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.2  
changed lines
  Added in v.1.7

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2