summaryrefslogtreecommitdiffstats
path: root/cpp/sca/samples/store/store-solution.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/sca/samples/store/store-solution.hpp')
-rw-r--r--cpp/sca/samples/store/store-solution.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/cpp/sca/samples/store/store-solution.hpp b/cpp/sca/samples/store/store-solution.hpp
index ba36829718..73ddccafbe 100644
--- a/cpp/sca/samples/store/store-solution.hpp
+++ b/cpp/sca/samples/store/store-solution.hpp
@@ -22,13 +22,10 @@
#ifndef store_storesolution_hpp
#define store_storesolution_hpp
-#include <string.h>
#include "tuscany/list.hpp"
#include "store-composite.hpp"
#include "currency-composite.hpp"
-using namespace tuscany;
-
namespace store
{
@@ -44,11 +41,11 @@ public:
currency(CurrencyImpl()), store(StoreImpl(currency)) {
}
- virtual const list<Item> getCatalog() const {
+ virtual const tuscany::list<Item> getCatalog() const {
return store.getCatalog();
}
- virtual const list<Item> getCart() const {
+ virtual const tuscany::list<Item> getCart() const {
return store.getCart();
}