// // Programmer: Craig Stuart Sapp // Creation Date: Fri Nov 1 23:35:02 PST 1996 // Last Modified: Thu Nov 27 21:21:47 GMT-0800 1997 // Filename: ...sig/maint/code/Generator/Generator.cpp // Web Address: http://sig.sapp.org/src/sig/Generator.cpp // Documentation: http://sig.sapp.org/doc/classes/Generator // Syntax: C++ // #include "Generator.h" ////////////////////////////// // // Genetator::Generator -- // Generator::Generator(void) { setName("Generator"); brandname = GENERATOR; // 0 = signal, 1 = generator, 2 = filter } ////////////////////////////// // // Genetator::~Generator -- // Generator::~Generator() { } ////////////////////////////// // // Generator::printConnections -- // default value: flag = 0; // void Generator::printConnections(int flag) { if (flag == 2 || flag == 3) { printState(); } } ////////////////////////////// // // Generator::tick -- // void Generator::tick(int newTickNumber) { if (tickNumber != newTickNumber) { action(); tickNumber = newTickNumber; } } // md5sum: 72d05046a859989f76671c25e125a03a Generator.cpp [20010708]