summaryrefslogtreecommitdiff
path: root/protocols/ace/HTBP/HTBP_Filter_Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/ace/HTBP/HTBP_Filter_Factory.h')
-rw-r--r--protocols/ace/HTBP/HTBP_Filter_Factory.h66
1 files changed, 0 insertions, 66 deletions
diff --git a/protocols/ace/HTBP/HTBP_Filter_Factory.h b/protocols/ace/HTBP/HTBP_Filter_Factory.h
deleted file mode 100644
index 84f32000664..00000000000
--- a/protocols/ace/HTBP/HTBP_Filter_Factory.h
+++ /dev/null
@@ -1,66 +0,0 @@
-// -*- C++ -*-
-// $Id$
-
-//=============================================================================
-/**
- * @file HTBP_Filter_Factory.h
- *
- * $Id$
- *
- * @author Priyanka Gontla
- */
-//=============================================================================
-
-#ifndef ACE_HTBP_FILTER_FACTORY
-#define ACE_HTBP_FILTER_FACTORY
-#include /**/ "ace/pre.h"
-
-#include "HTBP_Export.h"
-#include "HTBP_Filter.h"
-#include "ace/Service_Config.h"
-#include "ace/Service_Object.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-namespace ACE
-{
- namespace HTBP
- {
- class Stream;
-
- /**
- * @class Filter_Factory
- *
- * @brief Factory to get the Filters
- *
- * The Filter Factory is to be used for getting filters based on the
- * mode requested. This class is a ACE_Service_Object and should be
- * loadable with the help of the service configurator framework.
- */
- class HTBP_Export Filter_Factory : public ACE_Service_Object
- {
- public:
-
- /// Constructor
- Filter_Factory ();
-
- ~Filter_Factory ();
-
- /// Initialization hook.
- virtual int init (int argc, ACE_TCHAR *argv[]);
-
- //
- Filter *get_filter (int inside);
- };
- }
-}
-
-ACE_STATIC_SVC_DECLARE_EXPORT (HTBP, ACE_HTBP_Filter_Factory)
-ACE_FACTORY_DECLARE (HTBP, ACE_HTBP_Filter_Factory)
-
-
-
-#include /**/ "ace/post.h"
-#endif /* ACE_HTBP_FILTER_FACTORY */