]> www.ginac.de Git - cln.git/blob - include/cln/integer_class.h
Replace CL_REQUIRE/CL_PROVIDE(cl_I_ring) with portable code.
[cln.git] / include / cln / integer_class.h
1 // Abstract class of integers.
2
3 #ifndef _CL_INTEGER_CLASS_H
4 #define _CL_INTEGER_CLASS_H
5
6 #include "cln/number.h"
7 #include "cln/rational_class.h"
8
9 namespace cln {
10
11 class cl_I : public cl_RA {
12 public:
13 // Default constructor.
14         cl_I ();
15 // Copy constructor.
16         cl_I (const cl_I&);
17 // Assignment operators.
18         cl_I& operator= (const cl_I&);
19 // Constructors and assignment operators from C numeric types.
20         cl_I (const int);               // |argument| must be < 2^29
21         cl_I (const unsigned int);      // argument must be < 2^29
22         cl_I (const long);
23         cl_I (const unsigned long);
24 #ifdef HAVE_LONGLONG
25         cl_I (const long long);
26         cl_I (const unsigned long long);
27 #endif
28         cl_I& operator= (const int);            // |argument| must be < 2^29
29         cl_I& operator= (const unsigned int);   // argument must be < 2^29
30         cl_I& operator= (const long);
31         cl_I& operator= (const unsigned long);
32 #ifdef HAVE_LONGLONG
33         cl_I& operator= (const long long);
34         cl_I& operator= (const unsigned long long);
35 #endif
36 // Other constructors.
37         cl_I (const char *);
38 // Private constructor.
39         cl_I (cl_private_thing);
40         cl_I (struct cl_fixnum * /* NULL! */, cl_uint);
41         cl_I (struct cl_heap_bignum *);
42 public: // Ability to place an object at a given address.
43         void* operator new (size_t size) { return malloc_hook(size); }
44         void* operator new (size_t size, void* ptr) { (void)size; return ptr; }
45         void operator delete (void* ptr) { free_hook(ptr); }
46 };
47
48 // Private constructors.
49 inline cl_I::cl_I (cl_private_thing ptr) : cl_RA (ptr) {}
50 // The assignment operators:
51 CL_DEFINE_ASSIGNMENT_OPERATOR(cl_I, cl_I)
52 // The default constructors.
53 inline cl_I::cl_I ()
54         : cl_RA ((cl_private_thing) cl_combine(cl_FN_tag,0)) {}
55 // The copy constructors.
56 CL_DEFINE_COPY_CONSTRUCTOR2(cl_I,cl_RA)
57 // Constructors and assignment operators from C numeric types.
58 CL_DEFINE_INT_CONSTRUCTORS(cl_I)
59 CL_DEFINE_INT_ASSIGNMENT_OPERATORS(cl_I)
60 CL_DEFINE_LONG_CONSTRUCTORS(cl_I)
61 CL_DEFINE_LONG_ASSIGNMENT_OPERATORS(cl_I)
62 #ifdef HAVE_LONGLONG
63 CL_DEFINE_LONGLONG_CONSTRUCTORS(cl_I)
64 CL_DEFINE_LONGLONG_ASSIGNMENT_OPERATORS(cl_I)
65 #endif
66
67 }  // namespace cln
68
69 #endif /* _CL_INTEGER_CLASS_H */