summaryrefslogtreecommitdiffstats
path: root/kviewshell/tdemultipageInterface.h
blob: e9dabf0f979a9feff82666dcad98e26d91a23069 (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