summaryrefslogtreecommitdiffstats
path: root/cpp/sca/samples/store/store-solution.hpp
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2009-09-14 06:12:22 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2009-09-14 06:12:22 +0000
commit0eb1658ee76b0a849d12728744f7fa9d0b43a203 (patch)
treeac2898cbd1c24d67571ba8ada1cd1015b190507d /cpp/sca/samples/store/store-solution.hpp
parent1f1af3587a9a9f666c3faa76a651553c292ebc40 (diff)
Fixed sample namespaces, changed from tuscany to store. Also adjusted ifndef statements in includes to match namespace + include name.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@814486 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--cpp/sca/samples/store/store-solution.hpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/cpp/sca/samples/store/store-solution.hpp b/cpp/sca/samples/store/store-solution.hpp
index 4ed4fba551..ba36829718 100644
--- a/cpp/sca/samples/store/store-solution.hpp
+++ b/cpp/sca/samples/store/store-solution.hpp
@@ -19,15 +19,17 @@
/* $Rev$ $Date$ */
-#ifndef SCA_STORESOLUTION_HPP_
-#define SCA_STORESOLUTION_HPP_
+#ifndef store_storesolution_hpp
+#define store_storesolution_hpp
#include <string.h>
#include "tuscany/list.hpp"
#include "store-composite.hpp"
#include "currency-composite.hpp"
-namespace tuscany
+using namespace tuscany;
+
+namespace store
{
class StoreSolution : public Store {
@@ -60,4 +62,4 @@ public:
};
}
-#endif /* SCA_STORESOLUTION_HPP_ */
+#endif /* store_storesolution_hpp */