source: git/factory/cf_globals.cc @ 8336c9

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