]> www.ginac.de Git - cln.git/blob - src/float/ffloat/misc/cl_FF_class.cc
Finalize CLN 1.3.7 release.
[cln.git] / src / float / ffloat / misc / cl_FF_class.cc
1 // cl_class_ffloat.
2
3 // General includes.
4 #include "base/cl_sysdep.h"
5
6 // Specification.
7 #include "cln/ffloat.h"
8
9
10 // Implementation.
11
12 namespace cln {
13
14 cl_class cl_class_ffloat = {
15 #ifdef CL_WIDE_POINTERS
16         NULL,           // destructor not used, since not heap objects
17 #else
18         NULL,           // empty destructor
19 #endif
20         cl_class_flags_subclass_complex | cl_class_flags_subclass_real | cl_class_flags_subclass_float
21 };
22
23 #ifdef CL_WIDE_POINTERS
24 AT_INITIALIZATION(ini_class_ffloat)
25 {
26         cl_immediate_classes[cl_FF_tag] = &cl_class_ffloat;
27 }
28 #endif
29
30 }  // namespace cln