source: git/factory/cf_switches.cc @ b23c90

spielwiese
Last change on this file since b23c90 was 51bfdb, checked in by Jens Schmidt <schmidt@…>, 26 years ago
* cf_switches.cc: doc fix git-svn-id: file:///usr/local/Singular/svn/trunk@1028 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 531 bytes
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2/* $Id: cf_switches.cc,v 1.5 1998-01-16 08:09:21 schmidt Exp $ */
3
4//{{{ docu
5//
6// cf_switches.cc - definition of class CFSwitches.
7//
8// Used by: cf_globals.cc, ftest/ftest_util.cc
9//
10//}}}
11
12#include <config.h>
13
14#include "cf_switches.h"
15
16//{{{ CFSwitches::CFSwitches ()
17//{{{ docu
18//
19// CFSwitches::CFSwitches() - default constructor.
20//
21// Turns all switches off.
22//
23//}}}
24CFSwitches::CFSwitches ()
25{
26    for ( int i = 0; i < CFSwitchesMax; i++ )
27        switches[i] = false;
28}
29//}}}
Note: See TracBrowser for help on using the repository browser.