|
Gaudi Framework, version v23r2 |
| Home | Generated: Thu Jun 28 2012 |
00001 // $Id:$ 00002 // ============================================================================ 00003 // Include files 00004 // ============================================================================ 00005 #include "Position.h" 00006 // ============================================================================ 00007 // STD & STL: 00008 // ============================================================================ 00009 #include <string> 00010 // ============================================================================ 00011 // Boost: 00012 // ============================================================================ 00013 #include <boost/format.hpp> 00014 std::string Gaudi::Parsers::Position::ToString() const { 00015 return str(boost::format("%1%: (%2%, %3%)") % filename_ % line_ % column_); 00016 } 00017