00001 00006 /* 00007 * Copyright (C) 2005 Bregmasoft. All rights reserved. 00008 * 00009 * This program is free software; you can redistribute it and/or modify it 00010 * under the terms of the GNU General Public License as published by the Free 00011 * Software Foundation; either version 2 of the License, or (at your option) 00012 * any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, but WITHOUT 00015 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00016 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 00017 * more details. 00018 * 00019 * You should have received a copy of the GNU General Public License along 00020 * with this program; if not, write to the Free Software Foundation, Inc., 59 00021 * Temple Place, Suite 330, Boston, MA 02111-1307 USA 00022 */ 00023 #ifndef ZYGOMA_MODULES_H_ 00024 #define ZYGOMA_MODULES_H_ 00025 00026 namespace Zygoma 00027 { 00031 class Module 00032 { 00033 char* m_name; 00034 void (*m_factory)(); 00035 }; 00036 } // namespace Zygoma 00037 00038 #endif // ZYGOMA_MODULES_H_