Update of /cvsroot/pygccxml/source/pyplusplus/unittests/data
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19111/pyplusplus/unittests/data
Added Files:
free_function_ignore_bug_to_be_exported.hpp
optional_bug_to_be_exported.hpp
Log Message:
porting boost.date_time library to use new api.
Porting process discover few bugs, I fixed them.
--- NEW FILE: free_function_ignore_bug_to_be_exported.hpp ---
// Copyright 2004 Roman Yakovenko.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef __free_function_ignore_bug_to_be_exported_hpp__
#define __free_function_ignore_bug_to_be_exported_hpp__
#include <string>
namespace free_function_ignore_bug{
inline void do_nothing(){}
inline void do_nothing(int, int){}
}
#endif//__user_text_to_be_exported_hpp__
--- NEW FILE: optional_bug_to_be_exported.hpp ---
// Copyright 2004 Roman Yakovenko.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef __optional_bug_to_be_exported_hpp__
#define __optional_bug_to_be_exported_hpp__
namespace optional_bug{
struct data{
data(){}
data( int a, int b, int c=0, int d=0 ){}
};
}
#endif//__optional_bug_to_be_exported_hpp__
|