Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template traits

boost::unit_test::data::monomorphic::traits

Synopsis

// In header: <boost/test/data/monomorphic/dataset.hpp>

template<typename T> 
struct traits {
  // types
  typedef T const & ref_type;

  // public static functions
  template<typename Action> 
    static void invoke_action(ref_type, Action const &);
};

Description

traits public static functions

  1. template<typename Action> 
      static void invoke_action(ref_type arg, Action const & action);

PrevUpHomeNext