You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeutils/tdelirc/tdelirc/arguments.cpp

37 lines
535 B

//
//
// C++ Implementation: $MODULE$
//
// Description:
//
//
// Author: Gav Wood <gav@kde.org>, (C) 2003
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include <tqstring.h>
#include "arguments.h"
Arguments::Arguments()
{
}
Arguments::~Arguments()
{
}
const TQString Arguments::toString() const
{
TQString ret = "";
for(Arguments::const_iterator i = begin(); i != end(); ++i)
{ TQString s = (*i).toString();
if(s.isNull()) s = "...";
if(i != begin()) ret += ", ";
ret += s;
}
return ret;
}