// Copyright (c) 2008 Chris Miceli // // Distributed under the Boost Software License, // Version 1.0. (See accompanying LICENSE file // or copy at http://www.boost.org/LICENSE_1_0.txt) #include #include #include "hdfs_file_adaptor_file.hpp" namespace hdfs_file_adaptor { /////////////////////////////////////////////////////////////////////////////// // void file_cpi_impl::sync_permissions_allow (saga::impl::void_t & ret, std::string id, int perm, int flags) { SAGA_ADAPTOR_THROW ("Not Implemented", saga::NotImplemented); } /////////////////////////////////////////////////////////////////////////////// // void file_cpi_impl::sync_permissions_deny (saga::impl::void_t & ret, std::string id, int perm, int flags) { SAGA_ADAPTOR_THROW ("Not Implemented", saga::NotImplemented); } /////////////////////////////////////////////////////////////////////////////// // void file_cpi_impl::sync_permissions_check (bool & ret, std::string id, int perm) { SAGA_ADAPTOR_THROW ("Not Implemented", saga::NotImplemented); } /////////////////////////////////////////////////////////////////////////////// // void file_cpi_impl::sync_get_owner (std::string & out) { SAGA_ADAPTOR_THROW ("Not Implemented", saga::NotImplemented); } /////////////////////////////////////////////////////////////////////////////// // void file_cpi_impl::sync_get_group (std::string & out) { SAGA_ADAPTOR_THROW ("Not Implemented", saga::NotImplemented); } } // namespace