00001 //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 00002 // 00003 // This file is part of E-Cell Simulation Environment package 00004 // 00005 // Copyright (C) 1996-2002 Keio University 00006 // 00007 //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 00008 // 00009 // 00010 // E-Cell is free software; you can redistribute it and/or 00011 // modify it under the terms of the GNU General Public 00012 // License as published by the Free Software Foundation; either 00013 // version 2 of the License, or (at your option) any later version. 00014 // 00015 // E-Cell is distributed in the hope that it will be useful, 00016 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00018 // See the GNU General Public License for more details. 00019 // 00020 // You should have received a copy of the GNU General Public 00021 // License along with E-Cell -- see the file COPYING. 00022 // If not, write to the Free Software Foundation, Inc., 00023 // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00024 // 00025 //END_HEADER 00026 // 00027 // written by Koichi Takahashi <shafi@e-cell.org>, 00028 // E-Cell Project. 00029 // 00030 00031 #ifndef ___PROCESSMAKER_H___ 00032 #define ___PROCESSMAKER_H___ 00033 00034 #include "Process.hpp" 00035 #include "dmtool/ModuleMaker.hpp" 00036 00037 00038 namespace libecs 00039 { 00040 00041 /* *defgroup libecs_module The Libecs Module 00042 * This is the libecs module 00043 * @{ 00044 */ 00045 00046 class ProcessMaker 00047 : 00048 public SharedModuleMaker<Process> 00049 { 00050 private: 00051 00052 protected: 00053 00054 // virtual void makeClassList(); 00055 00056 public: 00057 00058 ProcessMaker(); 00059 virtual ~ProcessMaker() {} 00060 }; 00061 00062 #define NewProcessModule(CLASS) NewDynamicModule(Process,CLASS) 00063 00064 /** @} */ //end of libecs_module 00065 00066 } // namespace libecs 00067 00068 #endif /* ___PROCESSMAKER_H___ */