blob: a1aebc1458251933374481720fd9dc421050d129 (
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
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
|
#include "cbigint.h"
CBigInt::CBigInt(int value = 0)
{
}
CBigInt::CBigInt(const CBigInt & toCopy)
{
}
CBigInt::~CBigInt()
{
}
int CBigInt::setSize(int newSize)
{
}
int CBigInt::size() const
{
}
void CBigInt::setDigit(int pos, BaseType value)
{
}
CBigInt CBigInt::operator +(const CBigInt & n2)
{
}
const char * CBigInt::toHexString()const
{
}
static bool CBigInt::isLongOk()
{
}
void CBigInt::copy(const CBigInt & toCopy)
{
}
|