Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

algorithmVI.cpp

Go to the documentation of this file.
00001 
00002 #include "Event/algorithmVI.h"
00003 
00004 //########################
00005 void algorithmVI::run() 
00006 //########################      
00007 {
00008         initialize();
00009         execute();
00010         finalize();
00011 }
00012 //##########################
00013 void algorithmVI::command(std::string com)
00014 //##########################
00015 {
00016         if (com == "initialize") initialize();
00017         else if (com == "execute") execute();
00018         else if (com == "finalize") finalize();
00019         else if (com == "run") run();
00020 }

Generated at Fri Aug 18 12:57:37 2000 for centella framework by doxygen 1.1.3 written by Dimitri van Heesch, © 1997-2000