/* * (c) 2008-2009 Alexander Warg * economic rights: Technische Universität Dresden (Germany) * * This file is part of TUD:OS and distributed under the terms of the * GNU General Public License 2. * Please see the COPYING-GPL-2 file for details. */ #pragma once #include "loader.h" #include "debug.h" #include class Elf_loader : public Loader, public Ldr::Elf_loader { public: bool check_file_type(Moe::Dataspace const *file) const; bool launch(App_task *, cxx::String const &, cxx::String const &); };