]> www.ginac.de Git - cln.git/blobdiff - include/cln/integer_class.h
Finalize CLN 1.3.7 release.
[cln.git] / include / cln / integer_class.h
index db2068e720a022aae1d28083bc47280e1cd31a43..6c99bda8195864f66143745bea3644b521a2e158 100644 (file)
@@ -21,10 +21,14 @@ public:
        cl_I (const unsigned int);      // argument must be < 2^29
        cl_I (const long);
        cl_I (const unsigned long);
+       cl_I (const long long);
+       cl_I (const unsigned long long);
        cl_I& operator= (const int);            // |argument| must be < 2^29
        cl_I& operator= (const unsigned int);   // argument must be < 2^29
        cl_I& operator= (const long);
        cl_I& operator= (const unsigned long);
+       cl_I& operator= (const long long);
+       cl_I& operator= (const unsigned long long);
 // Other constructors.
        cl_I (const char *);
 // Private constructor.
@@ -51,6 +55,8 @@ CL_DEFINE_INT_CONSTRUCTORS(cl_I)
 CL_DEFINE_INT_ASSIGNMENT_OPERATORS(cl_I)
 CL_DEFINE_LONG_CONSTRUCTORS(cl_I)
 CL_DEFINE_LONG_ASSIGNMENT_OPERATORS(cl_I)
+CL_DEFINE_LONGLONG_CONSTRUCTORS(cl_I)
+CL_DEFINE_LONGLONG_ASSIGNMENT_OPERATORS(cl_I)
 
 }  // namespace cln