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.
tdevelop/languages/cpp/app_templates/tdeioslave/slave.h

24 lines
481 B

#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