jengelh-datetimespielwiese
Last change
on this file since e4fe2b was
e4fe2b,
checked in by Oleksandr Motsak <motsak@…>, 12 years ago
|
FIX: Fixed huge BUG in cf_gmp.h
CHG: starting to cleanup factory
|
-
Property mode set to
100644
|
File size:
1.3 KB
|
Rev | Line | |
---|
[493c477] | 1 | /* emacs edit mode for this file is -*- C++ -*- */ |
---|
[341696] | 2 | /* $Id$ */ |
---|
[2dd068] | 3 | |
---|
[e6da16] | 4 | //{{{ docu |
---|
| 5 | // |
---|
| 6 | // cf_globals.cc - definitions of global variables. |
---|
| 7 | // |
---|
| 8 | // Used by: canonicalform.cc, int_int.cc, ffops.h, imm.h |
---|
| 9 | // |
---|
| 10 | //}}} |
---|
[ab4548f] | 11 | |
---|
[e4fe2b] | 12 | #include "config.h" |
---|
[ac7e53] | 13 | |
---|
[2dd068] | 14 | #include "cf_switches.h" |
---|
| 15 | |
---|
[e6da16] | 16 | //{{{ extern const char factoryVersion[]; |
---|
| 17 | //{{{ docu |
---|
| 18 | // |
---|
| 19 | // factoryVersion - factory version string. |
---|
| 20 | // |
---|
| 21 | // factoryVersion is initialized from #define FACTORYVERSION |
---|
| 22 | // which is defined in config.h. It is not used in factory |
---|
| 23 | // itself. |
---|
| 24 | // |
---|
| 25 | //}}} |
---|
[e50385b] | 26 | extern const char factoryVersion[] = "@(#) factoryVersion = " FACTORYVERSION; |
---|
[8f591c6] | 27 | |
---|
| 28 | //{{{ extern const char factoryConfiguration[]; |
---|
| 29 | //{{{ docu |
---|
| 30 | // |
---|
| 31 | // factoryConfiguration - factory configuration. |
---|
| 32 | // |
---|
| 33 | // factoryConfiguration is initialized from #define |
---|
| 34 | // FACTORYCONFIGURATION which is defined in config.h. It is set |
---|
| 35 | // to the option configure was called with plus the directory it |
---|
| 36 | // was called in. It is not used in factory itself. |
---|
| 37 | // |
---|
| 38 | //}}} |
---|
| 39 | extern const char factoryConfiguration[] = "@(#) factoryConfiguration = " FACTORYCONFIGURATION; |
---|
[e6da16] | 40 | //}}} |
---|
| 41 | |
---|
| 42 | //{{{ CFSwitches cf_glob_switches; |
---|
| 43 | //{{{ docu |
---|
| 44 | // |
---|
| 45 | // cf_glob_switches - factory switches. |
---|
| 46 | // |
---|
| 47 | // This is the only object of type CFSwitches in factory. It is |
---|
| 48 | // used either directly in the low level algorithms or by the |
---|
| 49 | // functions On(), Off(), isOn() defined in canonicalform.cc. |
---|
| 50 | // |
---|
| 51 | //}}} |
---|
[2dd068] | 52 | CFSwitches cf_glob_switches; |
---|
[e6da16] | 53 | //}}} |
---|
Note: See
TracBrowser
for help on using the repository browser.