generated doxygen include diagram. started testing feature-by-feature

This commit is contained in:
Lorenzo Caminiti
2015-05-14 08:16:40 -07:00
parent effcbf157e
commit 343b832779
55 changed files with 4203 additions and 143 deletions

View File

@@ -0,0 +1,17 @@
#include <boost/contract/scoped.hpp>
#include <boost/contract/constructor.hpp>
struct a {
a() {
boost::contract::scoped contract = boost::contract::constructor(this)
.precondition([] {}) // Error (must use constructor_precondition).
;
}
};
int main() {
a aa;
return 0;
}