summaryrefslogtreecommitdiff
path: root/contrib/utility/Utility/ExH/Converter.tpp
blob: 2d48015fe807a0573164887e1db713c61f2953f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// file      : Utility/ExH/Converter.tpp
// author    : Boris Kolpackov <boris@kolpackov.net>
// copyright : Copyright (c) 2002-2003 Boris Kolpackov
// license   : http://kolpackov.net/license.html

namespace Utility
{
  namespace ExH
  {
    template <typename T>
    std::string
    converter (T const& t)
    {
      // Default implementation just assumes that implicit converion exist.
      return t;
    }
  }
}
//$Id$