Where Online Learning is simpler!
The C and C++ Include Header Files
/usr/include/node/v8-forward.h
$ cat -n /usr/include/node/v8-forward.h 1 // Copyright 2021 the V8 project authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef INCLUDE_V8_FORWARD_H_ 6 #define INCLUDE_V8_FORWARD_H_ 7 8 // This header is intended to be used by headers that pass around V8 types, 9 // either by pointer or using Local
. The full definitions can be included 10 // either via v8.h or the more fine-grained headers. 11 12 #include "v8-local-handle.h" // NOLINT(build/include_directory) 13 14 namespace v8 { 15 16 class AccessorSignature; 17 class Array; 18 class ArrayBuffer; 19 class ArrayBufferView; 20 class BigInt; 21 class BigInt64Array; 22 class BigIntObject; 23 class BigUint64Array; 24 class Boolean; 25 class BooleanObject; 26 class Context; 27 class DataView; 28 class Data; 29 class Date; 30 class DictionaryTemplate; 31 class Extension; 32 class External; 33 class FixedArray; 34 class Float32Array; 35 class Float64Array; 36 class Function; 37 template
38 class FunctionCallbackInfo; 39 class FunctionTemplate; 40 class Int16Array; 41 class Int32; 42 class Int32Array; 43 class Int8Array; 44 class Integer; 45 class Isolate; 46 class Map; 47 class Module; 48 class Name; 49 class Number; 50 class NumberObject; 51 class Object; 52 class ObjectTemplate; 53 class Platform; 54 class Primitive; 55 class Private; 56 class Promise; 57 class Proxy; 58 class RegExp; 59 class Script; 60 class Set; 61 class SharedArrayBuffer; 62 class Signature; 63 class String; 64 class StringObject; 65 class Symbol; 66 class SymbolObject; 67 class Template; 68 class TryCatch; 69 class TypedArray; 70 class Uint16Array; 71 class Uint32; 72 class Uint32Array; 73 class Uint8Array; 74 class Uint8ClampedArray; 75 class UnboundModuleScript; 76 class Value; 77 class WasmMemoryObject; 78 class WasmModuleObject; 79 80 } // namespace v8 81 82 #endif // INCLUDE_V8_FORWARD_H_
Contact us
|
About us
|
Term of use
|
Copyright © 2000-2025 MyWebUniversity.com ™