summaryrefslogtreecommitdiff
path: root/TAO/tao/IIOP_Factory.h
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-15 20:06:51 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-15 20:06:51 +0000
commit2f33b02d0037bc8ee6788c2840c7822922c0c952 (patch)
treedd9680e93d92ed55dcab63954c75283209681cb8 /TAO/tao/IIOP_Factory.h
parentbb98ac0816b9558d489efbdf87833dbbbbb75b80 (diff)
downloadATCD-2f33b02d0037bc8ee6788c2840c7822922c0c952.tar.gz
ChangeLogTag:Fri Dec 15 11:36:08 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO/tao/IIOP_Factory.h')
-rw-r--r--TAO/tao/IIOP_Factory.h39
1 files changed, 18 insertions, 21 deletions
diff --git a/TAO/tao/IIOP_Factory.h b/TAO/tao/IIOP_Factory.h
index 89fa9bd2619..ac96b4d83da 100644
--- a/TAO/tao/IIOP_Factory.h
+++ b/TAO/tao/IIOP_Factory.h
@@ -1,18 +1,15 @@
// -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO
-//
-// = FILENAME
-// IIOP_Factory.h
-//
-// = AUTHOR
-// Fred Kuhns <fredk@cs.wustl.edu>
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file IIOP_Factory.h
+ *
+ * $Id$
+ *
+ * @author Fred Kuhns <fredk@cs.wustl.edu>
+ */
+//=============================================================================
+
#ifndef TAO_IIOP_FACTORY_H
#define TAO_IIOP_FACTORY_H
@@ -36,18 +33,18 @@ public:
virtual ~TAO_IIOP_Protocol_Factory (void);
// = Service Configurator hooks.
+ /// Dynamic linking hook
virtual int init (int argc, char* argv[]);
- // Dynamic linking hook
+ /// Verify prefix is a match
virtual int match_prefix (const ACE_CString &prefix);
- // Verify prefix is a match
+ /// Returns the prefix used by the protocol.
virtual const char *prefix (void) const;
- // Returns the prefix used by the protocol.
+ /// Return the character used to mark where an endpoint ends and
+ /// where its options begin.
virtual char options_delimiter (void) const;
- // Return the character used to mark where an endpoint ends and
- // where its options begin.
// = Check Protocol_Factory.h for a description of these methods.
virtual TAO_Acceptor *make_acceptor (void);
@@ -55,10 +52,10 @@ public:
virtual int requires_explicit_endpoint (void) const;
private:
+ /// Changing the version number can be used to provide backwards
+ /// compatibility with old clients.
int major_;
int minor_;
- // Changing the version number can be used to provide backwards
- // compatibility with old clients.
};
ACE_STATIC_SVC_DECLARE (TAO_IIOP_Protocol_Factory)