From 34b37811f30185af9d95520e382c392319dd6f09 Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Tue, 12 Apr 2016 12:01:07 -0700 Subject: [PATCH] Add GetObjectTagVector --- Runtime/CDependencyGroup.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Runtime/CDependencyGroup.hpp b/Runtime/CDependencyGroup.hpp index 7eb88c881..e89430e23 100644 --- a/Runtime/CDependencyGroup.hpp +++ b/Runtime/CDependencyGroup.hpp @@ -11,6 +11,7 @@ class CDependencyGroup public: CDependencyGroup(CInputStream& in); void ReadFromStream(CInputStream& in); + std::vector GetObjectTagVector() const { return x0_objectTags; } }; CFactoryFnReturn FDependencyGroupFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& param);