source: git/factory/cf_globals.cc @ 2d76bc

spielwiese
Last change on this file since 2d76bc was e6da16, checked in by Jens Schmidt <schmidt@…>, 27 years ago
* cf_globals.cc: #include fix, doc fix git-svn-id: file:///usr/local/Singular/svn/trunk@682 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 954 bytes
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2/* $Id: cf_globals.cc,v 1.7 1997-09-09 09:16:20 schmidt Exp $ */
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
29//{{{ CFSwitches cf_glob_switches;
30//{{{ docu
31//
32// cf_glob_switches - factory switches.
33//
34// This is the only object of type CFSwitches in factory.  It is
35// used either directly in the low level algorithms or by the
36// functions On(), Off(), isOn() defined in canonicalform.cc.
37//
38//}}}
39CFSwitches cf_glob_switches;
40//}}}
Note: See TracBrowser for help on using the repository browser.