00001 00005 /* 00006 * Copyright (C) 2004 Bregmasoft 00007 * 00008 * This program is free software; you can redistribute it and/or modify it 00009 * under the terms of the GNU General Public License as published by the Free 00010 * Software Foundation; either version 2 of the License, or (at your option) 00011 * any later version. 00012 * 00013 * This program is distributed in the hope that it will be useful, but WITHOUT 00014 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00015 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 00016 * more details. 00017 * 00018 * You should have received a copy of the GNU General Public License along 00019 * with this program; if not, write to the Free Software Foundation, Inc., 59 00020 * Temple Place, Suite 330, Boston, MA 02111-1307 USA 00021 */ 00022 #ifndef ZYGOMA_MARROW_H_ 00023 #define ZYGOMA_MARROW_H_ 00024 00025 #include <cpu.h> 00026 #include <interrupt.h> 00027 #include <vector> 00028 00029 00030 namespace Zygoma 00031 { 00038 class Marrow 00039 { 00040 public: 00042 static Marrow* autoDiscover(); 00043 00044 protected: 00045 Marrow() 00046 { } 00047 00048 protected: 00049 std::vector<Cpu> m_cpu; 00050 InterruptDispatcher* m_interruptDispatcher; 00051 }; 00052 } // namespace Zygoma 00053 00054 #endif // ZYGOMA_MARROW_H_