1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#include "testlibrss.h"
#include <tdeaboutdata.h>
#include <tdecmdlineargs.h>
#include <tdeapplication.h>
#include <kdebug.h>
using namespace RSS;
void Tester::test()
{
Loader *loader = Loader::create();
connect( loader, TQT_SIGNAL( loadingComplete( Loader *, Document, Status ) ),
this, TQT_SLOT( slotLoadingComplete( Loader *, Document, Status ) ) );
loader->loadFrom( "http://sourceforge.net/export/rss2_projnews.php?group_id=29057&rss_fulltext=1", new FileRetriever );
}
void Tester::slotLoadingComplete( Loader *loader, Document doc, Status status )
{
if ( status == Success )
kdDebug() << "Successfully retrieverd '" << doc.title() << "'" << endl;
if ( status != Success )
kdDebug() << "ERROR " << loader->errorCode() << endl;
kapp->quit();
}
int main( int argc, char **argv )
{
TDEAboutData aboutData( "testlibrss", "testlibrss", "0.1" );
TDECmdLineArgs::init( argc, argv, &aboutData );
TDEApplication app;
Tester tester;
tester.test();
return app.exec();
}
#include "testlibrss.moc"
|