File indexing completed on 2026-05-19 08:08:32
0001
0002
0003 #ifndef _CL_REAL_RING_H
0004 #define _CL_REAL_RING_H
0005
0006 #include "cln/ring.h"
0007 #include "cln/real_class.h"
0008
0009 namespace cln {
0010
0011 typedef cl_specialized_number_ring<cl_R> cl_real_ring;
0012 extern const cl_real_ring cl_R_ring;
0013 extern cl_class cl_class_real_ring;
0014
0015 class cl_R_ring_init_helper
0016 {
0017 static int count;
0018 public:
0019 cl_R_ring_init_helper();
0020 ~cl_R_ring_init_helper();
0021 };
0022
0023 static cl_R_ring_init_helper cl_R_ring_init_helper_instance;
0024
0025 }
0026
0027 #endif