blob: 672e6121754995aaa85e64e5728ef4ffc98c5cfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef _%{APPNAMELC}_H_
#define _%{APPNAMELC}_H_
#include <tqstring.h>
#include <tqcstring.h>
#include <kurl.h>
#include <tdeio/global.h>
#include <tdeio/slavebase.h>
class TQCString;
class kio_%{APPNAMELC}Protocol : public TDEIO::SlaveBase
{
public:
kio_%{APPNAMELC}Protocol(const TQCString &pool_socket, const TQCString &app_socket);
virtual ~kio_%{APPNAMELC}Protocol();
virtual void mimetype(const KURL& url);
virtual void get(const KURL& url);
};
#endif
|