#ifndef _STL_H_ #define _STL_H_ #pragma warning(disable:4786) //STLÀÇ ¾µµ¥¾ø´Â WarningÀ» ¾ø¾Ö±â À§ÇÑ.. #ifndef _WCHAR_T_DEFINED typedef unsigned short wchar_t; #define _WCHAR_T_DEFINED #endif //STL Àü¹æ ÂüÁ¶ namespace std { template class allocator; template struct less; template, class A = allocator > class multiset; template, class A = allocator > class set; template, class A = allocator > class map; template, class A = allocator > class multimap; template > class deque; template > class queue; template > class stack; template > class vector; template > class list; template struct pair; template struct char_traits; template, class A = allocator > class basic_string; typedef basic_string, allocator > string; typedef basic_string, allocator > wstring; template > class basic_ifstream; template > class basic_ofstream; typedef basic_ifstream > ifstream; typedef basic_ofstream > ofstream; } using namespace std; #endif