$treeview $search $mathjax
00001 // ////////////////////////////////////////////////////////////////////// 00002 #ifndef __STDAIR_BOM_BREAKPOINTTYPES_HPP 00003 #define __STDAIR_BOM_BREAKPOINTTYPES_HPP 00004 00005 // ////////////////////////////////////////////////////////////////////// 00006 // Import section 00007 // ////////////////////////////////////////////////////////////////////// 00008 // STL 00009 #include <list> 00010 // Boost 00011 #include <boost/shared_ptr.hpp> 00012 00013 namespace stdair { 00014 00015 // Forward declarations 00016 struct BreakPointStruct; 00017 00018 // ///////////// Type definitions ////////////// 00020 typedef boost::shared_ptr<BreakPointStruct> BreakPointPtr_T; 00021 00023 typedef std::list<BreakPointStruct> BreakPointList_T; 00024 00025 } 00026 #endif // __STDAIR_BOM_BREAKPOINTTYPES_HPP 00027