diff options
Diffstat (limited to 'CruUI/base.h')
-rw-r--r-- | CruUI/base.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CruUI/base.h b/CruUI/base.h index 83d1968c..861bf677 100644 --- a/CruUI/base.h +++ b/CruUI/base.h @@ -5,6 +5,7 @@ #include <folly/String.h> +#include <folly/FBVector.h> #include <folly/Function.h> #include <stdexcept> @@ -29,6 +30,9 @@ namespace cru template<typename... Args> using FlowControlAction = Function<FlowControl(Args...)>; + template<typename T> + using Vector = folly::fbvector<T>; + class Object { public: |