12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef BOOST_JSON_DETAIL_IMPL_SHARED_RESOURCE_IPP
- #define BOOST_JSON_DETAIL_IMPL_SHARED_RESOURCE_IPP
- #include <boost/json/detail/shared_resource.hpp>
- namespace boost {
- namespace json {
- namespace detail {
- shared_resource::
- shared_resource()
- {
- }
- shared_resource::
- ~shared_resource()
- {
- }
- }
- }
- }
- #endif
|