Aegisub/aegilib/src/prec.h
Rodrigo Braz Monteiro a3755cc6e4 Modified the subs lib to use TR1's shared_ptr.
Originally committed to SVN as r2034.
2008-03-13 03:42:27 +00:00

17 lines
273 B
C++

#pragma once
#define WIN32_LEAN_AND_MEAN
// Standard Library
#include <vector>
#include <list>
#include <map>
#include "tr1.h"
// wxWidgets
#ifdef _MSC_VER
#pragma warning(disable: 6011)
#endif
#include <wx/wxprec.h>
#ifdef _MSC_VER
#pragma warning(default: 6011)
#endif