summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-08-13 17:30:58 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-08-13 17:30:58 (GMT)
commitcf45e4bf71dd2a8b27c50d247c3f09a1e22e1fa9 (patch)
treed0561246efce6d170050b64d48f8b49316f149af /src/uscxml/Factory.h
parent422dedee98e956a7f4cffa69a4ba0a34716dec7f (diff)
downloaduscxml-cf45e4bf71dd2a8b27c50d247c3f09a1e22e1fa9.zip
uscxml-cf45e4bf71dd2a8b27c50d247c3f09a1e22e1fa9.tar.gz
uscxml-cf45e4bf71dd2a8b27c50d247c3f09a1e22e1fa9.tar.bz2
More work on java datamodel interface
Diffstat (limited to 'src/uscxml/Factory.h')
-rw-r--r--src/uscxml/Factory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/Factory.h b/src/uscxml/Factory.h
index 74cb2a4..0432f34 100644
--- a/src/uscxml/Factory.h
+++ b/src/uscxml/Factory.h
@@ -299,7 +299,7 @@ public:
class DataModel {
public:
DataModel() : _impl() {}
- DataModel(boost::shared_ptr<DataModelImpl> const impl) : _impl(impl) { }
+ DataModel(const boost::shared_ptr<DataModelImpl> impl) : _impl(impl) { }
DataModel(const DataModel& other) : _impl(other._impl) { }
virtual ~DataModel() {};