Branch data Line data Source code
1 : : #include "meshkit/mstream.hpp"
2 : 48 : mstream::mstream ()
3 : : // ---------------------------------------------------------------------------
4 : : // Function: default constructor
5 : : // Input: none
6 : : // Output: none
7 : : // ---------------------------------------------------------------------------
8 : : {
9 : 24 : }
10 : :
11 : 48 : mstream::~mstream ()
12 : : // ---------------------------------------------------------------------------
13 : : // Function: destructor
14 : : // Input: none
15 : : // Output: none
16 : : // ---------------------------------------------------------------------------
17 : : {
18 : 24 : }
19 : :
20 : 600 : mstream& mstream::operator<< (std::ostream& (*pfun)(std::ostream&))
21 : : // ---------------------------------------------------------------------------
22 : : // Function: helps enable endline - std::endl
23 : : // Input: none
24 : : // Output: none
25 : : // ---------------------------------------------------------------------------
26 : : {
27 : 600 : pfun(coss);
28 : 600 : pfun(std::cout);
29 : 600 : return *this;
30 [ + - ][ + - ]: 1872 : }
|