Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-19 08:08:31

0001 // Built-in null ring.
0002 
0003 #ifndef _CL_NULL_RING_H
0004 #define _CL_NULL_RING_H
0005 
0006 #include "cln/ring.h"
0007 
0008 namespace cln {
0009 
0010 class cl_null_ring : public cl_ring { public: cl_null_ring (); };
0011 extern const cl_null_ring cl_0_ring;        // math. {0}
0012 
0013 class cl_0_ring_init_helper
0014 {
0015     static int count;
0016 public:
0017     cl_0_ring_init_helper();
0018     ~cl_0_ring_init_helper();
0019 };
0020 static cl_0_ring_init_helper cl_0_ring_init_helper_instance;
0021 
0022 }  // namespace cln
0023 
0024 #endif /* _CL_NULL_RING_H */