diff options
author | crupest <crupest@outlook.com> | 2018-09-04 00:37:25 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2018-09-04 00:37:25 +0800 |
commit | 9397b9fb89e389906ec9f6c9ea3ca18073593c8c (patch) | |
tree | 4cd41a7e55cee6c74edb8661219dea896e06e5a6 /CruUI/base.h | |
parent | 43ab2b1c465e2fd955f054c984d5ca6e77e4bb73 (diff) | |
download | cru-9397b9fb89e389906ec9f6c9ea3ca18073593c8c.tar.gz cru-9397b9fb89e389906ec9f6c9ea3ca18073593c8c.tar.bz2 cru-9397b9fb89e389906ec9f6c9ea3ca18073593c8c.zip |
...
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: |