You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
266 B

25 years ago
  1. // Built-in null ring.
  2. #ifndef _CL_NULL_RING_H
  3. #define _CL_NULL_RING_H
  4. #include "cl_ring.h"
  5. class cl_null_ring : public cl_ring { public: cl_null_ring (); };
  6. extern const cl_null_ring cl_0_ring; // math. {0}
  7. //CL_REQUIRE(cl_0_ring)
  8. #endif /* _CL_NULL_RING_H */