summaryrefslogtreecommitdiff
path: root/fxjs/cfxjse_arguments.h
diff options
context:
space:
mode:
Diffstat (limited to 'fxjs/cfxjse_arguments.h')
-rw-r--r--fxjs/cfxjse_arguments.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/fxjs/cfxjse_arguments.h b/fxjs/cfxjse_arguments.h
index 4f18082f84..beaf1525bb 100644
--- a/fxjs/cfxjse_arguments.h
+++ b/fxjs/cfxjse_arguments.h
@@ -9,17 +9,15 @@
#include <memory>
+#include "fxjs/cfxjse_class.h"
#include "fxjs/fxjse.h"
-class CFXJSE_Class;
-
class CFXJSE_Arguments {
public:
CFXJSE_Arguments(const v8::FunctionCallbackInfo<v8::Value>* pInfo,
CFXJSE_Value* pRetValue)
: m_pInfo(pInfo), m_pRetValue(pRetValue) {}
- v8::Isolate* GetRuntime() const;
int32_t GetLength() const;
std::unique_ptr<CFXJSE_Value> GetValue(int32_t index) const;
bool GetBoolean(int32_t index) const;