blob: 07d727eb8d8c97744179ed297d002f7f0255b517 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef NEWSTUFFDIALOG_H
#define NEWSTUFFDIALOG_H
#include <tdenewstuff/knewstuff.h>
class NewStuffDialog : public TDENewStuff
{
public:
NewStuffDialog();
~NewStuffDialog();
bool install(const TQString &fileName);
bool createUploadFile(const TQString &fileName);
TQString downloadDestination(KNS::Entry *entry);
};
#endif
|