Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:47

0001 //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
0002 
0003 //Distributed under the Boost Software License, Version 1.0. (See accompanying
0004 //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 #ifndef BOOST_EXCEPTION_056F1F266C1311DE8E74299255D89593
0007 #define BOOST_EXCEPTION_056F1F266C1311DE8E74299255D89593
0008 
0009 #include <string>
0010 
0011 namespace
0012 boost
0013     {
0014     template <class Tag,class T> class error_info;
0015 
0016     //Usage hint:
0017     //FILE * f=fopen(name,mode);
0018     //if( !f )
0019     //    BOOST_THROW_EXCEPTION(
0020     //        file_open_error() <<
0021     //        errinfo_file_name(name) <<
0022     //        errinfo_file_open_mode(mode) );
0023     typedef error_info<struct errinfo_file_open_mode_,std::string> errinfo_file_open_mode;
0024     }
0025 
0026 #endif