File indexing completed on 2024-05-12 04:59:41

0001 
0002 
0003 #include <QObject>
0004 
0005 #include "kio_man.h"
0006 
0007 #include <KLocalizedString>
0008 #include <QApplication>
0009 
0010 class kio_man_test : public MANProtocol
0011 {
0012     Q_OBJECT
0013 
0014 public:
0015     kio_man_test(const QByteArray &pool_socket, const QByteArray &app_socket);
0016 };
0017 
0018 int main(int argc, char **argv)
0019 {
0020     QApplication a(argc, argv);
0021 
0022     MANProtocol testproto("/tmp/kiotest.in", "/tmp/kiotest.out");
0023     testproto.showIndex("3");
0024 
0025     return 0;
0026 }
0027 
0028 #include "kio_man_test.moc"