//
// C++ Interface: textutils
//
// Description: 
//
//
// Author: Ian Reinhart Geiser <igeiser@devonit.com>, (C) 2008
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef TEXTUTILS_H
#define TEXTUTILS_H

#include <QStringList>

/**
Misc text utilitiy methods.

	@author Ian Reinhart Geiser <igeiser@devonit.com>
*/
class TextUtils{
public:
    TextUtils();
    ~TextUtils();

    static QStringList imageUrls( const QString &html );
    static QString getBaseUrl( const QString &url );
};

#endif

