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

Diff for /pegasus/src/Pegasus/WQL/WQLOperation.cpp between version 1.1.2.1 and 1.4

version 1.1.2.1, 2001/12/02 20:36:49 version 1.4, 2003/10/22 14:26:14
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2003////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 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.
 // //
 // 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 35 
Line 37 
 { {
     switch (x)     switch (x)
     {     {
         case WQL_OR:          case WQL_OR: return "WQL_OR";
             return "WQL_OR";          case WQL_AND: return "WQL_AND";
         case WQL_AND:          case WQL_NOT: return "WQL_NOT";
             return "WQL_AND";          case WQL_EQ: return "WQL_EQ";
         case WQL_NOT:          case WQL_NE: return "WQL_NE";
             return "WQL_NOT";          case WQL_LT: return "WQL_LT";
         case WQL_EQ:          case WQL_LE: return "WQL_LE";
             return "WQL_EQ";          case WQL_GT: return "WQL_GT";
         case WQL_NE:          case WQL_GE: return "WQL_GE";
             return "WQL_NE";          case WQL_IS_NULL: return "WQL_IS_NULL";
         case WQL_LT:          case WQL_IS_TRUE: return "WQL_IS_TRUE";
             return "WQL_LT";          case WQL_IS_FALSE: return "WQL_IS_FALSE";
         case WQL_LE:          case WQL_IS_NOT_NULL: return "WQL_IS_NOT_NULL";
             return "WQL_LE";          case WQL_IS_NOT_TRUE: return "WQL_IS_NOT_TRUE";
         case WQL_GT:          case WQL_IS_NOT_FALSE: return "WQL_IS_NOT_FALSE";
             return "WQL_GT";          default: return "UNKNOWN OPERATION";
         case WQL_GE:  
             return "WQL_GE";  
         case WQL_IS_NULL:  
             return "WQL_IS_NULL";  
         case WQL_CALL:  
             return "WQL_CALL";  
         default:  
             return "UNKNOWN OPERATION";  
     }     }
 } }
  


Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.4

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2