summaryrefslogtreecommitdiff
path: root/libcult/cult/trace/record.txx
blob: 0c4ef1b97fbf315690c0910d166f4c89eced0a56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// file      : cult/trace/record.txx
// author    : Boris Kolpackov <boris@kolpackov.net>
// copyright : Copyright (c) 2005-2010 Boris Kolpackov
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

namespace Cult
{
  namespace Trace
  {
    template <typename T>
    inline
    Record& Record::
    operator<< (T const& arg)
    {
      os_ << arg;
      return *this;
    }
  }
}