]> www.ginac.de Git - cln.git/blob - include/cln/rational_class.h
Finalize CLN 1.3.7 release.
[cln.git] / include / cln / rational_class.h
1 // Abstract class of rational numbers.
2
3 #ifndef _CL_RATIONAL_CLASS_H
4 #define _CL_RATIONAL_CLASS_H
5
6 #include "cln/number.h"
7 #include "cln/real_class.h"
8
9 namespace cln {
10
11 class cl_RA : public cl_R {
12 public:
13 // Default constructor.
14         cl_RA ();
15 // Copy constructor.
16         cl_RA (const cl_RA&);
17 // Converters.
18 // Assignment operators.
19         cl_RA& operator= (const cl_RA&);
20 // Constructors and assignment operators from C numeric types.
21         cl_RA (const int);              // |argument| must be < 2^29
22         cl_RA (const unsigned int);     // argument must be < 2^29
23         cl_RA (const long);
24         cl_RA (const unsigned long);
25         cl_RA (const long long);
26         cl_RA (const unsigned long long);
27         cl_RA& operator= (const int);           // |argument| must be < 2^29
28         cl_RA& operator= (const unsigned int);  // argument must be < 2^29
29         cl_RA& operator= (const long);
30         cl_RA& operator= (const unsigned long);
31         cl_RA& operator= (const long long);
32         cl_RA& operator= (const unsigned long long);
33 // Other constructors.
34         cl_RA (const char *);
35 // Private constructor.
36         cl_RA (cl_private_thing);
37         cl_RA (struct cl_heap_ratio *);
38 public: // Ability to place an object at a given address.
39         void* operator new (size_t size) { return malloc_hook(size); }
40         void* operator new (size_t size, void* ptr) { (void)size; return ptr; }
41         void operator delete (void* ptr) { free_hook(ptr); }
42 private:
43 // Friend declarations. They are for the compiler. Just ignore them.
44 };
45
46 // Private constructors.
47 inline cl_RA::cl_RA (cl_private_thing ptr) : cl_R (ptr) {}
48 // The assignment operators:
49 CL_DEFINE_ASSIGNMENT_OPERATOR(cl_RA, cl_RA)
50 // The default constructors.
51 inline cl_RA::cl_RA ()
52         : cl_R ((cl_private_thing) cl_combine(cl_FN_tag,0)) {}
53 // The copy constructors.
54 CL_DEFINE_COPY_CONSTRUCTOR2(cl_RA,cl_R)
55 // Constructors and assignment operators from C numeric types.
56 CL_DEFINE_INT_CONSTRUCTORS(cl_RA)
57 CL_DEFINE_INT_ASSIGNMENT_OPERATORS(cl_RA)
58 CL_DEFINE_LONG_CONSTRUCTORS(cl_RA)
59 CL_DEFINE_LONG_ASSIGNMENT_OPERATORS(cl_RA)
60 CL_DEFINE_LONGLONG_CONSTRUCTORS(cl_RA)
61 CL_DEFINE_LONGLONG_ASSIGNMENT_OPERATORS(cl_RA)
62
63 }  // namespace cln
64
65 #endif /* _CL_RATIONAL_CLASS_H */