summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/DataModelImpl.h
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-08-02 06:04:38 (GMT)
committerGitHub <noreply@github.com>2017-08-02 06:04:38 (GMT)
commit97e72c5cb5e70eca231f74f01097c9b2392b4c98 (patch)
treef90d4ceb9d48fdc0dc240fce031dc81308e471dd /src/uscxml/plugins/DataModelImpl.h
parent998e624aaddb237767f5d80e0ff12eb2cfdc814b (diff)
parent045bde78c0587316e0373c7698413412d0f315f9 (diff)
downloaduscxml-97e72c5cb5e70eca231f74f01097c9b2392b4c98.zip
uscxml-97e72c5cb5e70eca231f74f01097c9b2392b4c98.tar.gz
uscxml-97e72c5cb5e70eca231f74f01097c9b2392b4c98.tar.bz2
Merge pull request #165 from tklab-tud/sradomski
Reenabled V8, Debugger tests and smaller fixes
Diffstat (limited to 'src/uscxml/plugins/DataModelImpl.h')
-rw-r--r--src/uscxml/plugins/DataModelImpl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uscxml/plugins/DataModelImpl.h b/src/uscxml/plugins/DataModelImpl.h
index afb41bc..1df965d 100644
--- a/src/uscxml/plugins/DataModelImpl.h
+++ b/src/uscxml/plugins/DataModelImpl.h
@@ -149,7 +149,7 @@ public:
* @param content The string with tokens to replace.
* @return How many occurences where replaced.
*/
- size_t replaceExpressions(std::string& content);
+ DEPRECATED size_t replaceExpressions(std::string& content);
/**
* Evaluate the given expression as something iterable and return its length.
@@ -206,7 +206,7 @@ public:
* @param expr The variable / location to check.
* @todo Is this still used?
*/
- virtual bool isDeclared(const std::string& expr) = 0;
+ DEPRECATED virtual bool isDeclared(const std::string& expr) = 0;
/**
* Assign a data object to a location in the data-model.
@@ -248,7 +248,7 @@ public:
* Register an extension to get data into and out of the data-model.
* @todo This is currently unsupported
*/
- virtual void addExtension(DataModelExtension* ext);
+ DEPRECATED virtual void addExtension(DataModelExtension* ext);
protected:
DataModelCallbacks* _callbacks;