lib/vfs: seperate implemention and API headers

Issue #1891
This commit is contained in:
Emery Hemingway 2016-06-27 09:13:09 +02:00 committed by Christian Helmuth
parent 33ce649e85
commit beebd394fc
14 changed files with 12 additions and 19 deletions

View File

@ -16,18 +16,18 @@
#include <base/shared_object.h>
/* supported builtin file systems */
#include <vfs/tar_file_system.h>
#include <vfs/fs_file_system.h>
#include <vfs/terminal_file_system.h>
#include <vfs/null_file_system.h>
#include <vfs/zero_file_system.h>
#include <vfs/block_file_system.h>
#include <vfs/log_file_system.h>
#include <vfs/rom_file_system.h>
#include <vfs/inline_file_system.h>
#include <vfs/rtc_file_system.h>
#include <vfs/ram_file_system.h>
#include <vfs/symlink_file_system.h>
#include "block_file_system.h"
#include "fs_file_system.h"
#include "inline_file_system.h"
#include "log_file_system.h"
#include "null_file_system.h"
#include "ram_file_system.h"
#include "rom_file_system.h"
#include "rtc_file_system.h"
#include "symlink_file_system.h"
#include "tar_file_system.h"
#include "terminal_file_system.h"
#include "zero_file_system.h"
class Default_file_system_factory : public Vfs::Global_file_system_factory

View File

@ -32,13 +32,6 @@
#include <vfs/dir_file_system.h>
/* supported file systems */
#include <vfs/tar_file_system.h>
#include <vfs/fs_file_system.h>
#include <vfs/terminal_file_system.h>
#include <vfs/null_file_system.h>
#include <vfs/zero_file_system.h>
#include <vfs/block_file_system.h>
#include <vfs/rtc_file_system.h>
#include <random_file_system.h>
#include <stdio_file_system.h>