diff options
author | Travis CI <zmoelnig@travis-ci.umlaeute.mur.at> | 2017-08-26 20:05:39 +0000 |
---|---|---|
committer | Travis CI <zmoelnig@travis-ci.umlaeute.mur.at> | 2017-08-26 20:05:39 +0000 |
commit | 14f6826903a2ff566d145b1976afdead79166a82 (patch) | |
tree | ca3a38af65ee9ead97bb1f1a36e13df3ad208c1e /Gem/develop | |
parent | b644b5494d867c2e9a4561a2a9d350ce600831b0 (diff) |
Gem cc0d464af7ab8f98375a24d437b10ad9f9fd9158 osx/x86_64
built 'master:cc0d464af7ab8f98375a24d437b10ad9f9fd9158' for osx/x86_64
Diffstat (limited to 'Gem/develop')
-rw-r--r-- | Gem/develop/include/Gem/RTE/RTE.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Gem/develop/include/Gem/RTE/RTE.h b/Gem/develop/include/Gem/RTE/RTE.h index bbcad94..18e2a93 100644 --- a/Gem/develop/include/Gem/RTE/RTE.h +++ b/Gem/develop/include/Gem/RTE/RTE.h @@ -43,13 +43,19 @@ namespace gem { * resolve a function-name in the current RTE * @return pointer to the function named 'name', or NULL if it doesn't exist */ - virtual void*getFunction(const std::string&name); + virtual void*getFunction(const std::string&name) const; /** * find a file in the given context(canvas), searching RTEs search paths * @return expanded filename */ virtual std::string findFile(const std::string&name, const std::string&ext, const void*context) const; + + /** + * add 'path' to the search-paths (if context==NULL, to the global search path) + * @return expanded filename + */ + virtual bool addSearchPath(const std::string&path, void*context); }; }; }; |