Changeset e6da16 in git for factory/cf_globals.cc
- Timestamp:
- Sep 9, 1997, 11:16:20 AM (26 years ago)
- Branches:
- (u'spielwiese', 'e7cc1ebecb61be8b9ca6c18016352af89940b21a')
- Children:
- edde26f369efc4485312ee39665fdc41db1da1df
- Parents:
- d931f8e8c157850aa188ec7b06c7cd4a691715c6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_globals.cc
rd931f8 re6da16 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: cf_globals.cc,v 1.6 1997-06-19 12:27:00 schmidt Exp $ */ 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 //}}} 3 11 4 12 #include <config.h> 5 13 6 #include "assert.h"7 8 #include "cf_defs.h"9 14 #include "cf_switches.h" 10 15 11 // FACTORYVERSION is a macro defined in config.h 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 //}}} 12 26 extern 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 //}}} 13 39 CFSwitches cf_glob_switches; 40 //}}}
Note: See TracChangeset
for help on using the changeset viewer.