]> www.ginac.de Git - cln.git/blobdiff - include/cln/real_class.h
Replace CL_REQUIRE/CL_PROVIDE(cl_I_ring) with portable code.
[cln.git] / include / cln / real_class.h
index bae1e512c9f2e9d8c9fbfb229d7f472256a875a4..44f25e31df1d96b239bd0348bacaa435da861381 100644 (file)
@@ -22,6 +22,10 @@ public:
        cl_R (const unsigned int);      // argument must be < 2^29
        cl_R (const long);
        cl_R (const unsigned long);
+#ifdef HAVE_LONGLONG
+       cl_R (const long long);
+       cl_R (const unsigned long long);
+#endif
        cl_R (const float);
        cl_R (const double);
        cl_R& operator= (const int);            // |argument| must be < 2^29
@@ -30,6 +34,10 @@ public:
        cl_R& operator= (const unsigned long);
        cl_R& operator= (const float);
        cl_R& operator= (const double);
+#ifdef HAVE_LONGLONG
+       cl_R& operator= (const long long);
+       cl_R& operator= (const unsigned long long);
+#endif
 // Other constructors.
        cl_R (const char *);
 // Private constructor.
@@ -56,6 +64,10 @@ CL_DEFINE_INT_CONSTRUCTORS(cl_R)
 CL_DEFINE_INT_ASSIGNMENT_OPERATORS(cl_R)
 CL_DEFINE_LONG_CONSTRUCTORS(cl_R)
 CL_DEFINE_LONG_ASSIGNMENT_OPERATORS(cl_R)
+#ifdef HAVE_LONGLONG
+CL_DEFINE_LONGLONG_CONSTRUCTORS(cl_R)
+CL_DEFINE_LONGLONG_ASSIGNMENT_OPERATORS(cl_R)
+#endif
 CL_DEFINE_FLOAT_CONSTRUCTOR(cl_R)
 CL_DEFINE_DOUBLE_CONSTRUCTOR(cl_R)