8 #ifndef IMPNPCTRANSPORT_PARAMETER_H 
    9 #define IMPNPCTRANSPORT_PARAMETER_H 
   11 #include "npctransport_config.h" 
   14 IMPNPCTRANSPORT_BEGIN_NAMESPACE
 
   23  Parameter() : init_(false) {}
 
   25  Parameter(T t) : t_(t), init_(true) {}
 
   43   bool is_init() { 
return init_; }
 
   47 IMPNPCTRANSPORT_END_NAMESPACE
 
Helper macros for throwing and handling exceptions. 
 
#define IMP_USAGE_CHECK(expr, message)
A runtime test for incorrect usage of a class or method.