summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/CSD_Strategy_Tests/TP_Foo_C/Foo_C_Custom_ClientEngine.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/CSD_Strategy_Tests/TP_Foo_C/Foo_C_Custom_ClientEngine.h')
-rw-r--r--ACE/TAO/tests/CSD_Strategy_Tests/TP_Foo_C/Foo_C_Custom_ClientEngine.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/ACE/TAO/tests/CSD_Strategy_Tests/TP_Foo_C/Foo_C_Custom_ClientEngine.h b/ACE/TAO/tests/CSD_Strategy_Tests/TP_Foo_C/Foo_C_Custom_ClientEngine.h
new file mode 100644
index 00000000000..ae66ab13afe
--- /dev/null
+++ b/ACE/TAO/tests/CSD_Strategy_Tests/TP_Foo_C/Foo_C_Custom_ClientEngine.h
@@ -0,0 +1,42 @@
+// This may look like C, but it's really -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Foo_C_Custom_ClientEngine.h
+ *
+ * $Id$
+ *
+ * @author Tim Bradley <bradley_t@ociweb.com>
+ */
+//=============================================================================
+
+#ifndef FOO_C_CUSTOM_CLIENT_ENGINE_H
+#define FOO_C_CUSTOM_CLIENT_ENGINE_H
+
+#include "CSD_TP_Foo_C_Export.h"
+#include "ClientEngine.h"
+#include "Foo_C_Custom_Proxy.h"
+
+
+class CSD_TP_Foo_C_Export Foo_C_Custom_ClientEngine : public ClientEngine
+{
+ public:
+
+ Foo_C_Custom_ClientEngine(Foo_C_i* servant,
+ Foo_C_ptr objref,
+ TAO::CSD::TP_Strategy* strategy,
+ unsigned client_id);
+ virtual ~Foo_C_Custom_ClientEngine();
+
+ virtual bool execute(void);
+
+ static void expected_results(Foo_C_Statistics& stats);
+
+
+ private:
+
+ Foo_C_Custom_Proxy proxy_;
+ unsigned client_id_;
+};
+
+#endif