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