OSDN Git Service

first commit.
[gintenlib/gintenlib.git] / gintenlib / shared_ptr.hpp
1 #ifndef GINTENLIB_INCLUDED_SHARED_PTR_HPP_
2 #define GINTENLIB_INCLUDED_SHARED_PTR_HPP_
3
4 /*
5
6       <gintenlib/shared_ptr.hpp>
7
8   shared_ptr ¡§ boost::shared_ptr ¤Î using Àë¸À
9
10   Àë¸À¡§
11     using boost::shared_ptr;
12     
13   µ¡Ç½¡§
14     Ã±½ã¤Ë gintenlib Æâ¤Ç boost::shared_ptr ¤ò»È¤¦µ¡²ñ¤Ï¿¤¤¤Î¤Ç¡¢
15     Í½¤á using Àë¸À¤·¤Æ¤ª¤±¤Ð¡¢¤¤¤Á¤¤¤Á boost:: ¤È»ØÄꤷ¤Æ¤ä¤ëɬÍפ¬Ìµ¤¯¤Æ³Ú¡¢¤À¤±¤Î¥Ø¥Ã¥À¤Ç¤¹¡£
16     ¤¢¤È¤Ï TR1 ¤Ø¤ÎÂбþ¤ò¤·¤ä¤¹¤¤¤è¤¦¤Ë¡¢¤È¤¤¤¦°ÕµÁ¤â¤¢¤ê¤Þ¤¹¡£
17     ¤½¤Î¾ì¹ç¤Ï¸ß´¹À­¤¬¼º¤ï¤ì¤ë²ÄǽÀ­¤â¤¢¤ë¤Î¤Ç¡¢¤ä¤ë¤È¤¹¤ì¤Ð¥á¥¸¥ã¡¼¥Ð¡¼¥¸¥ç¥ó¥¢¥Ã¥×»þ¤Ç¤·¤ç¤¦¤¬¡£
18
19 */
20
21 #include <boost/shared_ptr.hpp>
22
23 namespace gintenlib
24 {
25   using boost::shared_ptr;
26
27 }   // namespace gintenlib
28
29
30 #endif  // #ifndef GINTENLIB_INCLUDED_SHARED_PTR_HPP_