C++ Template Metaprogramming
Solutions to the exercises throughout the book
All Classes Namespaces Files Functions Variables Typedefs Macros Modules Pages
exercise-2-3.hpp
Go to the documentation of this file.
1// ===-- chapter-2/exercise-2-3.hpp ----------------------- -*- C++ -*- --=== //
9#ifndef EXERCISE_2_3
10#define EXERCISE_2_3
11
12
40namespace exercise_2_3 {
41
46template <typename T>
48{
49 // std::ostream& operator<<(std::ostream& os)
50};
51
52} // namespace exercise_2_3
53
54#endif // EXERCISE_2_3
Encapsulate solution for Exercise 2-3.