Sha256: f1a85418d3b575ad2adcc338af63b869ea4c55bff01de262ae2fcbdb980a349e
Contents?: true
Size: 500 Bytes
Versions: 25
Compression:
Stored size: 500 Bytes
Contents
#include <say/say.hpp> /* void say_hello( std::ostream & to, const std::string & where ) { to << where << ": Hello!" << std::endl; } void say_bye( std::ostream & to, const std::string & where ) { to << where << ": Bye!" << std::endl; } */ say_type_t::say_type_t( const std::string & method ) : m_method( method ) { } say_type_t::~say_type_t() { } void say_type_t::say( std::ostream & to , const std::string & what ) const { to << m_method << ":" << what << std::endl; }
Version data entries
25 entries across 25 versions & 1 rubygems