1234567891011121314151617181920212223242526272829 |
- #ifndef BOOST_FLYWEIGHT_STATIC_HOLDER_FWD_HPP
- #define BOOST_FLYWEIGHT_STATIC_HOLDER_FWD_HPP
- #if defined(_MSC_VER)
- #pragma once
- #endif
- namespace boost{
- namespace flyweights{
- template<typename C>
- struct static_holder_class;
- struct static_holder;
- }
- }
- #endif
|