#ifndef PYTHONIC_INCLUDE_OS_PATH_JOIN_HPP #define PYTHONIC_INCLUDE_OS_PATH_JOIN_HPP #include "pythonic/types/str.hpp" PYTHONIC_NS_BEGIN namespace os { namespace path { template T join(T &&head); template types::str join(T &&head, Types &&... tail); DEFINE_FUNCTOR(pythonic::os::path, join); } } PYTHONIC_NS_END #endif