00001 /*************************************************************************** 00002 interfaces.cpp - description 00003 ------------------- 00004 begin : Mon Jan 15 2001 00005 copyright : (C) 2001 by Christoph "Crossfire" Cullmann 00006 (C) 2002 by Joseph Wenninger 00007 email : crossfire@babylon2k.de 00008 jowenn@kde.org 00009 ***************************************************************************/ 00010 00011 /*************************************************************************** 00012 This library is free software; you can redistribute it and/or 00013 modify it under the terms of the GNU Library General Public 00014 License as published by the Free Software Foundation; either 00015 version 2 of the License, or (at your option) any later version. 00016 00017 This library is distributed in the hope that it will be useful, 00018 but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00020 Library General Public License for more details. 00021 00022 You should have received a copy of the GNU Library General Public License 00023 along with this library; see the file COPYING.LIB. If not, write to 00024 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00025 Boston, MA 02111-1307, USA. 00026 ***************************************************************************/ 00027 00028 #include "document.h" 00029 00030 #include "view.h" 00031 00032 namespace Kate 00033 { 00034 00035 Document::Document () : KTextEditor::Document (0L, 0L) 00036 { 00037 } 00038 00039 Document::~Document () 00040 { 00041 } 00042 00043 View::View ( KTextEditor::Document *doc, QWidget *parent, const char *name ) : KTextEditor::View (doc, parent, name) 00044 { 00045 } 00046 00047 View::~View () 00048 { 00049 } 00050 00051 };
1.4.2