summaryrefslogtreecommitdiff
path: root/orbsvcs/examples/CosEC/Simple/Supplier.h
diff options
context:
space:
mode:
Diffstat (limited to 'orbsvcs/examples/CosEC/Simple/Supplier.h')
-rw-r--r--orbsvcs/examples/CosEC/Simple/Supplier.h43
1 files changed, 20 insertions, 23 deletions
diff --git a/orbsvcs/examples/CosEC/Simple/Supplier.h b/orbsvcs/examples/CosEC/Simple/Supplier.h
index 9f26df820ed..bf7e58e46d4 100644
--- a/orbsvcs/examples/CosEC/Simple/Supplier.h
+++ b/orbsvcs/examples/CosEC/Simple/Supplier.h
@@ -1,18 +1,14 @@
/* -*- C++ -*- */
-// $Id$
-//
-// ============================================================================
-//
-// = LIBRARY
-// ORBSVCS COS Event Channel examples
-//
-// = FILENAME
-// Supplier
-//
-// = AUTHOR
-// Carlos O'Ryan (coryan@cs.wustl.edu)
-//
-// ============================================================================
+//=============================================================================
+/**
+ * @file Supplier.h
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan (coryan@cs.wustl.edu)
+ */
+//=============================================================================
+
#ifndef SUPPLIER_H
#define SUPPLIER_H
@@ -23,25 +19,26 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+/**
+ * @class Supplier
+ *
+ * @brief Simple supplier object
+ *
+ * This class is a supplier of events.
+ */
class Supplier : public POA_CosEventComm::PushSupplier
{
- // = TITLE
- // Simple supplier object
- //
- // = DESCRIPTION
- // This class is a supplier of events.
- //
public:
+ /// Constructor
Supplier (void);
- // Constructor
+ /// Run the test
int run (int argc, ACE_TCHAR* argv[]);
- // Run the test
// = The CosEventComm::PushSupplier methods
+ /// The skeleton methods.
virtual void disconnect_push_supplier (void);
- // The skeleton methods.
private:
};