/* * \brief File-system related interfaces for Noux * \author Norman Feske * \date 2011-02-17 */ /* * Copyright (C) 2011-2013 Genode Labs GmbH * * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU General Public License version 2. */ #ifndef _NOUX__FILE_SYSTEM_H_ #define _NOUX__FILE_SYSTEM_H_ /* Genode includes */ #include #include #include /* Noux includes */ #include #include #include #include namespace Noux { struct File_system : Directory_service, File_io_service { /** * Our next sibling within the same 'Dir_file_system' */ struct File_system *next; File_system() : next(0) { } /** * Return name of file system * * This function is used for debugging only. */ virtual char const *name() const = 0; }; } #endif /* _NOUX__FILE_SYSTEM_H_ */