Fixing HelloWorldExample C++ implementation

Change-Id: I836836946a9e3663f360dc29f789fb9f7ec1a7c4

git-svn-id: https://svn.apache.org/repos/asf/etch/trunk@1583629 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/examples/helloworld/cpp/src/main/include/ImplHelloWorldServer.h b/examples/helloworld/cpp/src/main/include/ImplHelloWorldServer.h
index 88a44e4..b9344dd 100644
--- a/examples/helloworld/cpp/src/main/include/ImplHelloWorldServer.h
+++ b/examples/helloworld/cpp/src/main/include/ImplHelloWorldServer.h
@@ -37,7 +37,7 @@
 
     // TODO insert methods here to provide declarations of HelloWorldServer
     // messages from the mClient.
-    say_helloAsyncResultPtr say_hello(HelloWorld::EtchNativeArrayuserPtr to_whom);
+    say_helloAsyncResultPtr say_hello(HelloWorld::userPtr to_whom);
 
     virtual status_t _sessionNotify(capu::SmartPointer<EtchObject> event ) {
         if (event->getObjectType() == EtchString::TYPE()) {
diff --git a/examples/helloworld/cpp/src/main/src/ImplHelloWorldServer.cpp b/examples/helloworld/cpp/src/main/src/ImplHelloWorldServer.cpp
index 776b184..e51fbf0 100644
--- a/examples/helloworld/cpp/src/main/src/ImplHelloWorldServer.cpp
+++ b/examples/helloworld/cpp/src/main/src/ImplHelloWorldServer.cpp
@@ -21,7 +21,7 @@
 
   // TODO insert methods here to provide implementations of HelloWorldServer
   // messages from the mClient.
-  ImplHelloWorldServer::say_helloAsyncResultPtr ImplHelloWorldServer::say_hello(HelloWorld::EtchNativeArrayuserPtr to_whom)
+  ImplHelloWorldServer::say_helloAsyncResultPtr ImplHelloWorldServer::say_hello(HelloWorld::userPtr to_whom)
   {
     say_helloAsyncResultPtr res = new EtchAsyncResult<EtchString>();
     res->setResult(new EtchString("Hi From C++ Server!"));