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