lean cpp library
A lean C++ library providing efficient utility classes for high-performance C++ applications.
pimpl.h
00001 /*****************************************************/
00002 /* lean PImpl                   (c) Tobias Zirr 2011 */
00003 /*****************************************************/
00004 
00005 #ifndef LEAN_PIMPL_PIMPL
00006 #define LEAN_PIMPL_PIMPL
00007 
00008 namespace lean
00009 {
00012     namespace pimpl { }
00013 }
00014 
00015 #include "safe_pimpl_base.h"
00016 #include "unsafe_pimpl_base.h"
00017 #include "pimpl_ptr.h"
00018 #include "opaque_val.h"
00019 
00020 #endif