moved set/ to public api, added oldof, and started adding failure exceptions/handlers

This commit is contained in:
Lorenzo Caminiti
2015-04-25 12:29:00 -07:00
parent 605bc7ad5f
commit ab26a9fcc6
42 changed files with 1127 additions and 417 deletions

View File

@@ -0,0 +1,12 @@
#include <boost/contract/free_function.hpp>
#include <boost/contract/type.hpp>
int main() {
boost::contract::type c = boost::contract::free_function()
.precondition([&] {})
.precondition([&] {})
;
return 0;
}