1 /*
2  * (c) 2008-2009 Alexander Warg <warg@os.inf.tu-dresden.de>
3  *     economic rights: Technische Universität Dresden (Germany)
4  *
5  * This file is part of TUD:OS and distributed under the terms of the
6  * GNU General Public License 2.
7  * Please see the COPYING-GPL-2 file for details.
8  */
9 #pragma once
10 
11 #include <l4/cxx/string>
12 
13 namespace Moe {
14 class Dataspace;
15 
16 class Boot_fs
17 {
18 public:
19   static void init_stage1();
20   static void init_stage2();
21 
22   static Moe::Dataspace *open_file(cxx::String const &name);
23 };
24 
25 }
26