stdafx.h 363 B

1234567891011121314151617
  1. #pragma once
  2. #define _USE_MFC
  3. #define _DETECT_MEMORY_LEAK
  4. //#define WIN32_LEAN_AND_MEAN
  5. //#include <windows.h>
  6. #include <boost/enable_shared_from_this.hpp>
  7. #include <boost/make_shared.hpp>
  8. #include <Eigen/Dense>
  9. #include <GeneralHelper.h>
  10. //#define EIGEN_STATIC_ASSERT(CONDITION,MSG) eigen_assert((CONDITION) && #MSG);
  11. #ifdef _DEBUG
  12. #undef new
  13. #endif