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.
19 lines
385 B
19 lines
385 B
15 years ago
|
// -*- C++ -*-
|
||
12 years ago
|
#ifndef tdemultipageINTERFACE_H
|
||
|
#define tdemultipageINTERFACE_H
|
||
15 years ago
|
|
||
|
#include <dcopobject.h>
|
||
|
|
||
12 years ago
|
class tdemultipageInterface : virtual public DCOPObject
|
||
15 years ago
|
{
|
||
|
K_DCOP
|
||
|
|
||
|
k_dcop:
|
||
15 years ago
|
virtual ASYNC jumpToReference(const TQString& reference) = 0;
|
||
|
virtual TQString name_of_current_file() = 0;
|
||
|
virtual bool is_file_loaded(const TQString& filename) = 0;
|
||
15 years ago
|
};
|
||
|
|
||
|
#endif
|
||
|
|