diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_valuearray.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_valuearray.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_valuearray.h b/xfa/fxfa/parser/cxfa_valuearray.h index 48efae4774..f0c5d234c9 100644 --- a/xfa/fxfa/parser/cxfa_valuearray.h +++ b/xfa/fxfa/parser/cxfa_valuearray.h @@ -7,12 +7,13 @@ #ifndef XFA_FXFA_PARSER_CXFA_VALUEARRAY_H_ #define XFA_FXFA_PARSER_CXFA_VALUEARRAY_H_ +#include <memory> #include <vector> #include "fxjs/cfxjse_value.h" #include "xfa/fxfa/fxfa.h" -class CXFA_ValueArray : public CFX_ArrayTemplate<CFXJSE_Value*> { +class CXFA_ValueArray { public: explicit CXFA_ValueArray(v8::Isolate* pIsolate); ~CXFA_ValueArray(); @@ -20,6 +21,7 @@ class CXFA_ValueArray : public CFX_ArrayTemplate<CFXJSE_Value*> { std::vector<CXFA_Object*> GetAttributeObject(); v8::Isolate* const m_pIsolate; + std::vector<std::unique_ptr<CFXJSE_Value>> m_Values; }; #endif // XFA_FXFA_PARSER_CXFA_VALUEARRAY_H_ |