forked from aheckmann/node-gmp
-
Notifications
You must be signed in to change notification settings - Fork 6
/
node_gmp.h
76 lines (60 loc) · 2.16 KB
/
node_gmp.h
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#ifndef __NODE_GMP_H__
#define __NODE_GMP_H__
#include <v8.h>
#include <node.h>
#include <node_object_wrap.h>
#include <gmp.h>
#include <gmpxx.h>
using namespace v8;
class GInt: public node::ObjectWrap {
public:
~GInt();
GInt(mpz_class num);
static Handle<Value> Add(const Arguments &args);
static Handle<Value> Sub(const Arguments &args);
static Handle<Value> Mul(const Arguments &args);
static Handle<Value> Div(const Arguments &args);
static Handle<Value> Pow(const Arguments &args);
static Handle<Value> Cmp(const Arguments &args);
static Handle<Value> ToString(const Arguments &args);
static Handle<Value> ToNumber(const Arguments &args);
static Handle<Value> New(const Arguments &args);
private:
mpz_class val_;
};
class GFloat: public node::ObjectWrap {
public:
~GFloat();
GFloat(mpf_class num);
static Handle<Value> Add(const Arguments &args);
static Handle<Value> Sub(const Arguments &args);
static Handle<Value> Mul(const Arguments &args);
static Handle<Value> Div(const Arguments &args);
static Handle<Value> Pow(const Arguments &args);
static Handle<Value> Cmp(const Arguments &args);
static Handle<Value> Sqrt(const Arguments &args);
static Handle<Value> Ceil(const Arguments &args);
static Handle<Value> Floor(const Arguments &args);
static Handle<Value> ToString(const Arguments &args);
static Handle<Value> ToNumber(const Arguments &args);
static Handle<Value> New(const Arguments &args);
private:
mpf_class val_;
};
class GRational: public node::ObjectWrap {
public:
~GRational();
GRational(mpq_class num);
static Handle<Value> Add(const Arguments &args);
static Handle<Value> Sub(const Arguments &args);
static Handle<Value> Mul(const Arguments &args);
static Handle<Value> Div(const Arguments &args);
static Handle<Value> Pow(const Arguments &args);
static Handle<Value> Cmp(const Arguments &args);
static Handle<Value> ToString(const Arguments &args);
static Handle<Value> ToNumber(const Arguments &args);
static Handle<Value> New(const Arguments &args);
private:
mpq_class val_;
};
#endif // NODE_GMP_H