Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

action.C

Go to the documentation of this file.
00001 #include "action.H"
00002 
00003 ARRAY<ACTION*>  ACTION::_actions;
00004 
00005 ACTION::ACTION()
00006 {
00007    _actions += this;
00008 }
00009 
00010 ACTION::~ACTION()
00011 {
00012 }
00013 
00014 void 
00015 ACTION::write_script(STDdstream &d)
00016 {
00017    for (int i=0; i<_actions.num(); i++)
00018       _actions[i]->format(d);
00019 }
00020 
00021 // end of file action.H

Generated on Mon Sep 18 11:39:28 2006 for jot by  doxygen 1.4.4