tools.cpp
author Markus Bröker <mbroeker@largo.homelinux.org>
Fri, 10 Apr 2009 21:21:11 +0200
changeset 5 70980306fd61
parent 0 826dd5531eb0
permissions -rw-r--r--
lintian checks minimized the lintian warnings, QoS

/*
 *  $Id: tools.cpp 54 2008-01-10 00:24:52Z mbroeker $
 * $URL: http://localhost/svn/cpp/qMonitor/trunk/tools.cpp $
 */

#include <tools.h>

std::string itoa (const int &i)
{
    std::stringstream o;

    if (!(o << i))
        return "ERROR";
    return o.str ();
}