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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]