diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:19 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:19 -0600 |
commit | 00b4f54142276b0e2272ca56e48558551ab7b2b0 (patch) | |
tree | 1d1054b59fc2e76d0c2bae00126bdf65d9318865 /kviewshell/tdemultipageInterface.h | |
parent | c7549e238d15850306158ae153fc99126c84ab9d (diff) | |
download | tdegraphics-00b4f54142276b0e2272ca56e48558551ab7b2b0.tar.gz tdegraphics-00b4f54142276b0e2272ca56e48558551ab7b2b0.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kviewshell/tdemultipageInterface.h')
-rw-r--r-- | kviewshell/tdemultipageInterface.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/kviewshell/tdemultipageInterface.h b/kviewshell/tdemultipageInterface.h new file mode 100644 index 00000000..e9dabf0f --- /dev/null +++ b/kviewshell/tdemultipageInterface.h @@ -0,0 +1,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 + |