summaryrefslogtreecommitdiff
path: root/TAO/docs/tutorials/Quoter/Naming_Service/Stock_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/docs/tutorials/Quoter/Naming_Service/Stock_i.h')
-rw-r--r--TAO/docs/tutorials/Quoter/Naming_Service/Stock_i.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/TAO/docs/tutorials/Quoter/Naming_Service/Stock_i.h b/TAO/docs/tutorials/Quoter/Naming_Service/Stock_i.h
deleted file mode 100644
index b3863dbce90..00000000000
--- a/TAO/docs/tutorials/Quoter/Naming_Service/Stock_i.h
+++ /dev/null
@@ -1,28 +0,0 @@
-//
-// $Id$
-//
-
-#ifndef TAO_TUTORIAL_QUOTER_SIMPLE_SERVER_STOCK_I_H
-#define TAO_TUTORIAL_QUOTER_SIMPLE_SERVER_STOCK_I_H
-
-#include "QuoterS.h"
-#include <string>
-
-class Quoter_Stock_i : public POA_Quoter::Stock {
-public:
- Quoter_Stock_i (const char *symbol,
- const char *full_name,
- CORBA::Double price);
-
- char *symbol () throw (CORBA::SystemException);
- char *full_name () throw (CORBA::SystemException);
- CORBA::Double price () throw (CORBA::SystemException);
-
-private:
- std::string symbol_;
- std::string full_name_;
- CORBA::Double price_;
-};
-
-#endif /* TAO_TUTORIAL_QUOTER_SIMPLE_SERVER_STOCK_I_H */
-