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.
39 lines
464 B
39 lines
464 B
|
|
|
|
#include <tqobject.h>
|
|
|
|
#include "kio_man.h"
|
|
|
|
|
|
#include <kapplication.h>
|
|
#include <klocale.h>
|
|
|
|
|
|
class kio_man_test : public MANProtocol
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
kio_man_test(const TQCString &pool_socket, const TQCString &app_socket);
|
|
|
|
protected:
|
|
virtual void data(int);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
KApplication a( argc, argv , "p2");
|
|
|
|
MANProtocol testproto("/tmp/kiotest.in", "/tmp/kiotest.out");
|
|
testproto.showIndex("3");
|
|
|
|
return 0;
|
|
}
|
|
|
|
|