summaryrefslogtreecommitdiff
path: root/xfa/fxjse/cfxjse_arguments.h
blob: 423e22d8889900dbce9e22b766d243c26f0c85d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2016 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com

#ifndef XFA_FXJSE_CFXJSE_ARGUMENTS_H_
#define XFA_FXJSE_CFXJSE_ARGUMENTS_H_

#include "xfa/fxjse/include/fxjse.h"

class CFXJSE_Arguments {
 public:
  v8::Isolate* GetRuntime() const;
  int32_t GetLength() const;
  FXJSE_HVALUE GetValue(int32_t index) const;
  FX_BOOL GetBoolean(int32_t index) const;
  int32_t GetInt32(int32_t index) const;
  FX_FLOAT GetFloat(int32_t index) const;
  CFX_ByteString GetUTF8String(int32_t index) const;
  void* GetObject(int32_t index, FXJSE_HCLASS hClass = nullptr) const;
  FXJSE_HVALUE GetReturnValue();
};

#endif  // XFA_FXJSE_CFXJSE_ARGUMENTS_H_