blob: f060a7086ac70d685d6baf95fb8cb576df5de2cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// -*- C++ -*-
#ifndef TDEMULTIPAGEINTERFACE_H
#define TDEMULTIPAGEINTERFACE_H
#include <dcopobject.h>
class tdemultipageInterface : virtual public DCOPObject
{
K_DCOP
k_dcop:
virtual ASYNC jumpToReference(const TQString& reference) = 0;
virtual TQString name_of_current_file() = 0;
virtual bool is_file_loaded(const TQString& filename) = 0;
};
#endif
|