File indexing completed on 2025-03-16 10:52:55
0001 /* This file is part of the KDE project 0002 SPDX-FileCopyrightText: 2003 Robert JACOLIN <rjacolin@ifrance.com> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #ifndef __LATEXEXPORTIFACE_H__ 0008 #define __LATEXEXPORTIFACE_H__ 0009 0010 #include <dcopobject.h> 0011 0012 class KSpreadLatexExportDiaImpl; 0013 0014 class LatexExportIface: public DCOPObject 0015 { 0016 K_DCOP 0017 0018 public: 0019 explicit LatexExportIface(KSpreadLatexExportDiaImpl* dia); 0020 0021 ~LatexExportIface(); 0022 0023 k_dcop: 0024 void useDefaultConfig(); 0025 0026 private: 0027 KSpreadLatexExportDiaImpl* _dialog; 0028 }; 0029 0030 #endif /* __LATEXEXPORTIFACE_H__ */