diff options
Diffstat (limited to 'parts/outputviews/otherfilter.cpp')
-rw-r--r-- | parts/outputviews/otherfilter.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/parts/outputviews/otherfilter.cpp b/parts/outputviews/otherfilter.cpp new file mode 100644 index 00000000..5f14937c --- /dev/null +++ b/parts/outputviews/otherfilter.cpp @@ -0,0 +1,26 @@ +/*************************************************************************** + * Copyright (C) 1999-2001 by Bernd Gehrmann and the KDevelop Team * + * [email protected] * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#include "otherfilter.h" +#include "otherfilter.moc" +#include "makeitem.h" + +#include <kdebug.h> + +OtherFilter::OtherFilter() + : OutputFilter( *this ) +{ +} + +void OtherFilter::processLine( const QString& line ) +{ + emit item( new MakeItem( line ) ); +} |