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.
tdelibs/tdeparts/tests/ghostview.h

23 lines
305 B

#ifndef __example_h__
#define __example_h__
#include <tdeparts/mainwindow.h>
class Shell : public KParts::MainWindow
{
TQ_OBJECT
public:
Shell();
virtual ~Shell();
void openURL( const KURL & url );
protected slots:
void slotFileOpen();
private:
KParts::ReadOnlyPart *m_gvpart;
};
#endif