summaryrefslogtreecommitdiff
path: root/TAO/tests/CSD_Strategy_Tests/TP_Foo_A/Foo_A_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/CSD_Strategy_Tests/TP_Foo_A/Foo_A_i.cpp')
-rw-r--r--TAO/tests/CSD_Strategy_Tests/TP_Foo_A/Foo_A_i.cpp76
1 files changed, 76 insertions, 0 deletions
diff --git a/TAO/tests/CSD_Strategy_Tests/TP_Foo_A/Foo_A_i.cpp b/TAO/tests/CSD_Strategy_Tests/TP_Foo_A/Foo_A_i.cpp
new file mode 100644
index 00000000000..a7ca8835ecc
--- /dev/null
+++ b/TAO/tests/CSD_Strategy_Tests/TP_Foo_A/Foo_A_i.cpp
@@ -0,0 +1,76 @@
+// $Id$
+#include "Foo_A_i.h"
+#include "AppShutdown.h"
+
+
+Foo_A_i::Foo_A_i()
+{
+ for (unsigned i = 0; i < 5; i++)
+ {
+ this->op_count_[i] = 0;
+ }
+}
+
+
+Foo_A_i::~Foo_A_i()
+{
+}
+
+
+void
+Foo_A_i::op1(void)
+{
+ this->op_count_[0] ++;
+}
+
+
+void
+Foo_A_i::op2(CORBA::Long value)
+{
+ this->in_values_[1].push_back (value);
+ this->op_count_[1] ++;
+}
+
+
+CORBA::Long
+Foo_A_i::op3(CORBA::Long value)
+{
+ this->in_values_[2].push_back (value);
+ this->op_count_[2] ++;
+ return value;
+}
+
+
+void
+Foo_A_i::op4(CORBA::Long value)
+{
+ this->in_values_[3].push_back (value);
+ this->op_count_[3] ++;
+}
+
+
+void
+Foo_A_i::op5(void)
+{
+ this->op_count_[4] ++;
+ throw FooException();
+}
+
+
+void
+Foo_A_i::done(void)
+{
+ TheAppShutdown->client_done();
+}
+
+
+void
+Foo_A_i::gather_stats(Foo_A_Statistics& stats)
+{
+ for (unsigned i = 0; i < 5; i++)
+ {
+ stats.actual (i + 1, this->op_count_[i]);
+ stats.actual_in_values (i + 1, this->in_values_[i]);
+ }
+}
+