File indexing completed on 2025-01-30 09:35:39
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_FLYWEIGHT_ASSOC_CONTAINER_FACTORY_FWD_HPP
0010 #define BOOST_FLYWEIGHT_ASSOC_CONTAINER_FACTORY_FWD_HPP
0011
0012 #if defined(_MSC_VER)
0013 #pragma once
0014 #endif
0015
0016 #include <boost/flyweight/detail/not_placeholder_expr.hpp>
0017
0018 namespace boost{
0019
0020 namespace flyweights{
0021
0022 template<typename Container>
0023 class assoc_container_factory_class;
0024
0025 template<
0026 typename ContainerSpecifier
0027 BOOST_FLYWEIGHT_NOT_A_PLACEHOLDER_EXPRESSION
0028 >
0029 struct assoc_container_factory;
0030
0031 }
0032
0033 }
0034
0035 #endif