Kryptostack
Classes | Macros
dbc.h File Reference

Helpers for design by contract idioms. More...

#include <boost/assert.hpp>
+ Include dependency graph for dbc.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  DbC
 Design by contract interface class. More...
 
class  DbCRAIIassert< T >
 Helper class to call a check always at function return. More...
 

Macros

#define DBC_IS_VOID
 Is defined for PRODUCTION build type.
 
#define DBC_INV_RAII(TT)   const DbCRAIIassert<TT> _destructmeatreturn( &TT::invariant, this )
 Defines an instance of the class DbCRAIIassert<>, which calls the invariant()-function at the return of the current function.
 
#define DBC_PRE(XXX)   BOOST_ASSERT(XXX)
 Assert for preconditions.
 
#define DBC_POST(XXX)   BOOST_ASSERT(XXX)
 Assert for postconditions.
 
#define DBC_INV   BOOST_ASSERT(invariant())
 Assert for invariant checks in member functions.
 
#define DBC_INV_CTOR(T)   BOOST_ASSERT(T::invariant())
 Assert for invariant checks in ctors and dtors. More...
 

Detailed Description

Helpers for design by contract idioms.

Macro Definition Documentation

◆ DBC_INV_CTOR

#define DBC_INV_CTOR (   T)    BOOST_ASSERT(T::invariant())

Assert for invariant checks in ctors and dtors.

This version calls T::invariant(), because there's no virtual table available in the ctors.