summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_valuearray.h
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_valuearray.h')
-rw-r--r--xfa/fxfa/parser/cxfa_valuearray.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_valuearray.h b/xfa/fxfa/parser/cxfa_valuearray.h
index 2c4ea29779..48efae4774 100644
--- a/xfa/fxfa/parser/cxfa_valuearray.h
+++ b/xfa/fxfa/parser/cxfa_valuearray.h
@@ -7,6 +7,8 @@
#ifndef XFA_FXFA_PARSER_CXFA_VALUEARRAY_H_
#define XFA_FXFA_PARSER_CXFA_VALUEARRAY_H_
+#include <vector>
+
#include "fxjs/cfxjse_value.h"
#include "xfa/fxfa/fxfa.h"
@@ -15,7 +17,7 @@ class CXFA_ValueArray : public CFX_ArrayTemplate<CFXJSE_Value*> {
explicit CXFA_ValueArray(v8::Isolate* pIsolate);
~CXFA_ValueArray();
- void GetAttributeObject(CXFA_ObjArray& objArray);
+ std::vector<CXFA_Object*> GetAttributeObject();
v8::Isolate* const m_pIsolate;
};