summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Notify_Update_Dispatch_Command.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Notify_Update_Dispatch_Command.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Notify_Update_Dispatch_Command.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Notify_Update_Dispatch_Command.h b/TAO/orbsvcs/orbsvcs/Notify/Notify_Update_Dispatch_Command.h
deleted file mode 100644
index c8ab14ad24f..00000000000
--- a/TAO/orbsvcs/orbsvcs/Notify/Notify_Update_Dispatch_Command.h
+++ /dev/null
@@ -1,62 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-//
-// ============================================================================
-//
-// = LIBRARY
-// ORBSVCS Notification
-//
-// = FILENAME
-// Notify_Update_Dispatch_Command.h
-//
-// = DESCRIPTION
-//
-//
-// = AUTHOR
-// Pradeep Gore <pradeep@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef TAO_NOTIFY_UPDATE_DISPATCH_COMMAND_H
-#define TAO_NOTIFY_UPDATE_DISPATCH_COMMAND_H
-#include "ace/pre.h"
-#include "Notify_Command.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "notify_export.h"
-#include "tao/corba.h"
-#include "Notify_Collection.h"
-
-class TAO_Notify_UpdateListener;
-
-class TAO_Notify_Export TAO_Notify_Update_Dispatch_Command : public TAO_Notify_Command
-{
- // = TITLE
- // TAO_Notify_Update_Dispatch_Command
- //
- // = DESCRIPTION
- //
- //
- public:
- // = Initialization and termination code
- TAO_Notify_Update_Dispatch_Command (TAO_Notify_UpdateListener* listener, TAO_Notify_EventType_List& added, TAO_Notify_EventType_List& removed);
-
- ~TAO_Notify_Update_Dispatch_Command ();
-
- virtual int execute (CORBA::Environment& ACE_TRY_ENV);
- // Command callback
-
-protected:
- // = Data Members
- TAO_Notify_UpdateListener* update_listener_;
- TAO_Notify_EventType_List added_;
- TAO_Notify_EventType_List removed_;
-};
-
-/********************************************************************/
-
-#include "ace/post.h"
-#endif /* TAO_NOTIFY_UPDATE_DISPATCH_COMMAND_H */