summaryrefslogtreecommitdiff
path: root/fxjs/cjs_globalvariablearray.h
diff options
context:
space:
mode:
Diffstat (limited to 'fxjs/cjs_globalvariablearray.h')
-rw-r--r--fxjs/cjs_globalvariablearray.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/fxjs/cjs_globalvariablearray.h b/fxjs/cjs_globalvariablearray.h
index a3f46586b9..ae98d3e044 100644
--- a/fxjs/cjs_globalvariablearray.h
+++ b/fxjs/cjs_globalvariablearray.h
@@ -17,10 +17,11 @@ class CJS_GlobalVariableArray {
CJS_GlobalVariableArray();
~CJS_GlobalVariableArray();
+ CJS_GlobalVariableArray& operator=(const CJS_GlobalVariableArray& array);
+
void Add(std::unique_ptr<CJS_KeyValue> pKeyValue);
int Count() const;
CJS_KeyValue* GetAt(int index) const;
- void Copy(const CJS_GlobalVariableArray& array);
private:
std::vector<std::unique_ptr<CJS_KeyValue>> m_Array;