Sprout/sprout/fixed_container/const_pointer.hpp

19 lines
480 B
C++
Raw Normal View History

2011-09-01 02:48:32 +00:00
#ifndef SPROUT_FIXED_CONTAINER_CONST_POINTER_HPP
#define SPROUT_FIXED_CONTAINER_CONST_POINTER_HPP
#include <sprout/config.hpp>
#include <sprout/fixed_container/traits.hpp>
namespace sprout {
//
// fixed_const_pointer
//
template<typename Container>
struct fixed_const_pointer {
public:
typedef typename sprout::fixed_container_traits<Container>::const_pointer type;
};
} // namespace sprout
#endif // #ifndef SPROUT_FIXED_CONTAINER_CONST_POINTER_HPP