summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/orbsvcs/AV/Resource_Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/orbsvcs/orbsvcs/AV/Resource_Factory.h')
-rw-r--r--trunk/TAO/orbsvcs/orbsvcs/AV/Resource_Factory.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/trunk/TAO/orbsvcs/orbsvcs/AV/Resource_Factory.h b/trunk/TAO/orbsvcs/orbsvcs/AV/Resource_Factory.h
new file mode 100644
index 00000000000..a14a9087531
--- /dev/null
+++ b/trunk/TAO/orbsvcs/orbsvcs/AV/Resource_Factory.h
@@ -0,0 +1,54 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Resource_Factory.h
+ * $Id$
+ *
+ * @author Yamuna Krishnamurthy
+ */
+//=============================================================================
+
+
+#ifndef TAO_AV_DEFAULT_RESOURCE_FACTORY_H
+#define TAO_AV_DEFAULT_RESOURCE_FCATORY_H
+#include /**/ "ace/pre.h"
+
+#include "orbsvcs/AV/AVStreams_i.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "ace/Service_Config.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+/**
+ * @class TAO_AV_Resource_Factory
+ *
+ * @brief TAO AV Streams default resource factory abstract
+ * The AV Streams resource factory loads the
+ * pluggable transport and flow protocol factories
+ * in the corresponding factory sets.
+ *
+ *
+ */
+class TAO_AV_Export TAO_AV_Resource_Factory
+: public ACE_Service_Object
+{
+public:
+
+ /**
+ * @name Service Configurator Hooks
+ */
+ //@{
+ /// Dynamic linking hook
+ virtual int init (int argc, char *argv[]) = 0;
+
+};
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+#endif /* TAO_AV_DEFAULT_RESOURCE_FACTORY_H */