You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by aj...@apache.org on 2006/10/03 15:20:56 UTC

svn commit: r452485 - /incubator/tuscany/cpp/sca/samples/BigBank/bigbank.client/AccountService.h

Author: ajborley
Date: Tue Oct  3 06:20:55 2006
New Revision: 452485

URL: http://svn.apache.org/viewvc?view=rev&rev=452485
Log:
Convert use of char* to string to fix bug introduced with r449433

Modified:
    incubator/tuscany/cpp/sca/samples/BigBank/bigbank.client/AccountService.h

Modified: incubator/tuscany/cpp/sca/samples/BigBank/bigbank.client/AccountService.h
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/BigBank/bigbank.client/AccountService.h?view=diff&rev=452485&r1=452484&r2=452485
==============================================================================
--- incubator/tuscany/cpp/sca/samples/BigBank/bigbank.client/AccountService.h (original)
+++ incubator/tuscany/cpp/sca/samples/BigBank/bigbank.client/AccountService.h Tue Oct  3 06:20:55 2006
@@ -17,6 +17,9 @@
 
 #include "commonj/sdo/SDO.h"
 
+#include <string>
+using std::string;
+
 namespace services
 {
     namespace account
@@ -37,7 +40,7 @@
             // float balance.
 
              virtual commonj::sdo::DataObjectPtr /*AccountReport*/
-                 getAccountReport(const char* customerID) = 0;
+                 getAccountReport(const string customerID) = 0;
     
         };
 



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org