(file) Return to RepositoryQueue.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Repository / Attic

Diff for /pegasus/src/Pegasus/Repository/Attic/RepositoryQueue.cpp between version 1.2 and 1.4

version 1.2, 2002/02/11 01:17:42 version 1.4, 2002/06/01 00:57:22
Line 1 
Line 1 
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,
   // The Open Group, Tivoli Systems
 // //
 // 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 40 
Line 41 
 { {
 } }
  
 void RepositoryQueue::handleEnqueue(void)  
 {  
         Message * message = dequeue();  
  
         PEGASUS_ASSERT(message != 0);  void RepositoryQueue::handleEnqueue(Message *message)
   {
      if( ! message )
         return;
  
         switch(message->getType())         switch(message->getType())
         {         {
Line 151 
Line 152 
         delete message;         delete message;
 } }
  
   
   void RepositoryQueue::handleEnqueue(void)
   {
      Message * message = dequeue();
   
      PEGASUS_ASSERT(message != 0);
      if(message)
         handleEnqueue(message);
   
   
   }
   
 void RepositoryQueue::handleGetClassRequest(const Message * message) void RepositoryQueue::handleGetClassRequest(const Message * message)
 { {
 } }


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2