summaryrefslogtreecommitdiff
path: root/protocols/ace/HTBP/HTBP_Notifier.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/ace/HTBP/HTBP_Notifier.h')
-rw-r--r--protocols/ace/HTBP/HTBP_Notifier.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/protocols/ace/HTBP/HTBP_Notifier.h b/protocols/ace/HTBP/HTBP_Notifier.h
deleted file mode 100644
index 24ff34b0d5e..00000000000
--- a/protocols/ace/HTBP/HTBP_Notifier.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/* -*- C++ -*- */
-
-//=============================================================================
-/**
- * @file HTBP_Notifier.h
- *
- * $Id$
- *
- * @author Phil Mesnier, Priyanka Gontla
- */
-//=============================================================================
-
-#ifndef ACE_HTBP_NOTIFIER_H
-#define ACE_HTBP_NOTIFIER_H
-#include /**/ "ace/pre.h"
-
-#include "ace/Event_Handler.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "HTBP_Export.h"
-
-namespace ACE
-{
- namespace HTBP
- {
- // Forward declarations.
- class Channel;
-
- class HTBP_Export Notifier : public ACE_Event_Handler
- {
- public:
- Notifier (Channel *ch);
- int handle_input(ACE_HANDLE );
- int handle_output(ACE_HANDLE );
-
- void unregister (void);
-
- ACE_HANDLE get_handle (void) const;
-
- private:
- Channel *channel_;
- };
- }
-}
-
-#if defined (__ACE_INLINE__)
-#include "HTBP_Notifier.inl"
-#endif
-
-#include /**/ "ace/post.h"
-#endif /* ACE_HTBP_NOTIFIER_H */