diff options
author | Maxim Nikolenko <mnikolenko@productengine.com> | 2024-01-31 18:43:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-31 18:43:23 +0200 |
commit | eb0c19b2746890eb4dbfd6eac045699d0e5842dd (patch) | |
tree | 12b5789d97efbdc6ebb259ffc83461da38a442f3 /indra/newview/llinventorymodel.cpp | |
parent | e2ba2f9c453d4e913b0deb5dfee2a07c55034655 (diff) | |
parent | ab1f2c2f6f9b854b95db3733fd6ff6d02e677ebd (diff) |
Merge branch DRTVWR-589-luau into luau-scripting
LuaU scripting project
Diffstat (limited to 'indra/newview/llinventorymodel.cpp')
-rw-r--r-- | indra/newview/llinventorymodel.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp index 05aa2e423f..1220f1c45e 100644 --- a/indra/newview/llinventorymodel.cpp +++ b/indra/newview/llinventorymodel.cpp @@ -4829,6 +4829,17 @@ std::string LLInventoryModel::getFullPath(const LLInventoryObject *obj) const return result; } +/* +const LLInventoryObject* LLInventoryModel::findByFullPath(const std::string& path) +{ + vector<std::string> path_elts; + boost::algorithm::split(path_elts, path, boost::is_any_of("/")); + for(path_elts, auto e) + { + } +} +*/ + ///---------------------------------------------------------------------------- /// Local function definitions ///---------------------------------------------------------------------------- |