source: git/factory/cf_globals.cc @ 341696

spielwiese
Last change on this file since 341696 was 341696, checked in by Hans Schönemann <hannes@…>, 14 years ago
Adding Id property to all files git-svn-id: file:///usr/local/Singular/svn/trunk@12231 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.3 KB
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2/* $Id$ */
3
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//}}}
11
12#include <config.h>
13
14#include "cf_switches.h"
15
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//}}}
26extern const char factoryVersion[] = "@(#) factoryVersion = " FACTORYVERSION;
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//}}}
39extern const char factoryConfiguration[] = "@(#) factoryConfiguration = " FACTORYCONFIGURATION;
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//}}}
52CFSwitches cf_glob_switches;
53//}}}
Note: See TracBrowser for help on using the repository browser.