#ifndef CHILON_POLL_FILESYSTEM_HPP
#define CHILON_POLL_FILESYSTEM_HPP
#include <chilon/poll/pollable.hpp>
#include <chilon/config.hpp>
#include <chilon/poll/monitor_flags.hpp>
#if 0
#define CHILON_POLL_FILESYSTEM_INCLUDE <chilon/poll/detail/CHILON_FS_MONITOR_TYPE/CHILON_FS_MONITOR_TYPE.hpp>
#include CHILON_POLL_FILESYSTEM_INCLUDE
#endif
#if CHILON_FS_MONITOR_TYPE == inotify
#include <chilon/poll/detail/inotify/inotify.hpp>
#elif CHILON_FS_MONITOR_TYPE == kqueue
#include <chilon/poll/detail/kqueue/kqueue.hpp>
#endif
namespace chilon { namespace poll {
struct filesystem : detail::CHILON_FS_MONITOR_TYPE::CHILON_FS_MONITOR_TYPE {};
} }
#endif