Files
Leviathan/Library/External/include/boost/network/uri/schemes.hpp
T
2026-06-01 12:46:52 +02:00

38 lines
669 B
C++

// Copyright 2012 Glyn Matthews.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef __BOOST_NETWORK_URI_SCHEMES_INC__
# define __BOOST_NETWORK_URI_SCHEMES_INC__
#include <string>
namespace boost {
namespace network {
namespace uri {
class hierarchical_schemes {
public:
static bool exists(const std::string &scheme);
};
class opaque_schemes {
public:
static bool exists(const std::string &scheme);
};
} // namespace uri
} // namespace network
} // namespace boost
#endif // __BOOST_NETWORK_URI_SCHEMES_INC__