Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ost_counter(3) [debian man page]

ost::Counter< T >(3)					     Library Functions Manual					      ost::Counter< T >(3)

NAME
ost::Counter< T > - The counter template is used for generic objects which act as automatic counters. SYNOPSIS
#include <counter.h> Public Member Functions Counter () Construct and initialize a counter to zero. Counter (const Counter &counter) Construct a counter with an initial value set for another counter. Counter (T initial) Construct a counter with an initial value of the specified data type. T & operator= (T c) operator T () Protected Attributes T count Detailed Description template<typename T>class ost::Counter< T > The counter template is used for generic objects which act as automatic counters. Each time the object is accessed, the underlying counted data type is incremented. Author: David Sugar dyfet@gnutelephony.org Automatic counter template class. Constructor &; Destructor Documentation template<typename T > ost::Counter< T >::Counter () [inline] Construct and initialize a counter to zero. References ost::Counter< T >::count. template<typename T > ost::Counter< T >::Counter (const Counter< T > &counter) [inline] Construct a counter with an initial value set for another counter. Parameters: counter to copy from. References ost::Counter< T >::count. template<typename T > ost::Counter< T >::Counter (Tinitial) [inline] Construct a counter with an initial value of the specified data type. Parameters: initial value to set. References ost::Counter< T >::count. Member Function Documentation template<typename T > ost::Counter< T >::operator T () [inline] References ost::Counter< T >::count. template<typename T > T& ost::Counter< T >::operator= (Tc) [inline] Member Data Documentation template<typename T > T ost::Counter< T >::count [protected] Referenced by ost::Counter< T >::Counter(), and ost::Counter< T >::operator T(). Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::Counter< T >(3)

Check Out this Related Man Page

ost::IPV6MulticastValidator(3)				     Library Functions Manual				    ost::IPV6MulticastValidator(3)

NAME
ost::IPV6MulticastValidator - Class for the function object that validates multicast addresses. SYNOPSIS
#include <address.h> Inherits ost::IPV6Validator. Public Member Functions IPV6MulticastValidator () Constructor. virtual ~IPV6MulticastValidator () Keeps compilers happy... void operator() (const in6_addr address) const Application operator. Detailed Description Class for the function object that validates multicast addresses. Implements a specific application operator to validate multicast addresses. Author: Federico Montesino p5087@quintero.fie.us.es Validating class specialized for multicast addresses. Constructor &; Destructor Documentation ost::IPV6MulticastValidator::IPV6MulticastValidator () [inline] Constructor. Does not deal with any state. virtual ost::IPV6MulticastValidator::~IPV6MulticastValidator () [inline], [virtual] Keeps compilers happy... Member Function Documentation void ost::IPV6MulticastValidator::operator() (const in6_addraddress) const [virtual] Application operator. Apply the validation algorithm specific to multicast addresses Implements ost::IPV6Validator. Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::IPV6MulticastValidator(3)
Man Page