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

Diff for /pegasus/src/Pegasus/Common/CIMScope.h between version 1.15 and 1.16

version 1.15, 2003/03/12 21:02:53 version 1.16, 2003/10/04 21:12:13
Line 70 
Line 70 
         operator).         operator).
         @param   scope - a CIMScope object.         @param   scope - a CIMScope object.
         @return  the CIMScope object.         @return  the CIMScope object.
               <pre>
               CimScope s0;
               CIMScope s1(s0);
               </pre>
     */     */
     CIMScope & operator= (const CIMScope & scope);     CIMScope & operator= (const CIMScope & scope);
  
Line 78 
Line 82 
         @param   scope - a CIMScope object.         @param   scope - a CIMScope object.
         @return  true if every value in the specified CIMScope object is         @return  true if every value in the specified CIMScope object is
                  included in the CIMScope object, false otherwise.                  included in the CIMScope object, false otherwise.
               <pre>
                   CIMScope s0;
                   CIMScope s2;
                   s0.addScope (CIMScope::INDICATION);
               s3 = s0;
               </pre>
     */     */
     Boolean hasScope (const CIMScope & scope) const;     Boolean hasScope (const CIMScope & scope) const;
  
     /** Adds the specified scope value to the CIMScope object.     /** Adds the specified scope value to the CIMScope object.
         @param   scope - a scope value.         @param   scope - a scope value.
               <pre>
                   CIMScope s0;
                   s0.addScope (CIMScope::INDICATION);
                   if(s0.hasScope (CIMScope::INDICATION))
                           ...                             ..
               </pre>
     */     */
     void addScope (const CIMScope & scope);     void addScope (const CIMScope & scope);
  
Line 90 
Line 106 
         @param  scope - a CIMScope object.         @param  scope - a CIMScope object.
         @return true if the two CIMScope objects are equal,         @return true if the two CIMScope objects are equal,
                 false otherwise.                 false otherwise.
                   <pre>
                   CIMScope s0;
                   s0.addScope (CIMScope::CLASS + CIMScope::PARAMETER);
                   if(s0.hasScope (CIMScope::CLASS))
                           ...                             ..
                   </pre>
     */     */
     Boolean equal (const CIMScope & scope) const;     Boolean equal (const CIMScope & scope) const;
  
Line 97 
Line 119 
         @param  scope - a CIMScope object to add.         @param  scope - a CIMScope object to add.
         @return A new CIMScope object that represents the combination of this         @return A new CIMScope object that represents the combination of this
                 scope object with the specified scope object.                 scope object with the specified scope object.
               <pre>
               CIMScope s0(CIMScope::CLASS);
               CIMScope s1(CIMScope::PARAMETER);
               CIMScope s3 = s0 + S1;
               </pre>
     */     */
     CIMScope operator+ (const CIMScope & scope) const;     CIMScope operator+ (const CIMScope & scope) const;
  


Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2