OSDN Git Service

memberwise_swap を追加
[gintenlib/gintenlib.git] / gintenlib / type.hpp
1 #ifndef GINTENLIB_INCLUDED_TYPE_HPP_
2 #define GINTENLIB_INCLUDED_TYPE_HPP_
3
4 /*
5
6       <gintenlib/type.hpp>
7
8   type : boost::type の using 宣言
9
10   宣言:
11     using boost::type;
12     
13   機能:
14     boost::type への typedef です。主に「型へのシンボル」として機能します。
15     テンプレートでちょっと複雑なことやろうとすると必要。よく使うので boost:: を使わずに済むよう。
16
17 */
18
19 #include <boost/type.hpp>
20
21 namespace gintenlib
22 {
23   using boost::type;
24
25 }   // namespace gintenlib
26
27
28 #endif  // #ifndef GINTENLIB_INCLUDED_TYPE_HPP_