editors/qeditor/ada_indent.h
Go to the documentation of this file.00001 /* $Id: ada_indent.h,v 1.1 2003/05/02 18:43:36 okellogg Exp $ 00002 * Copyright (C) 2003 Oliver Kellogg 00003 * okellogg@users.sourceforge.net 00004 * 00005 * This program is free software; you can redistribute it and/or modify 00006 * it under the terms of the GNU General Public License as published by 00007 * the Free Software Foundation; either version 2 of the License, or 00008 * (at your option) any later version. 00009 */ 00010 #ifndef ADA_INDENT_H 00011 #define ADA_INDENT_H 00012 00013 #include "qeditor_indenter.h" 00014 #include <qregexp.h> 00015 00016 class AdaIndent: public QEditorIndenter 00017 { 00018 public: 00019 AdaIndent( QEditor* ); 00020 virtual ~AdaIndent(); 00021 00022 virtual int indentForLine( int ); 00023 00024 private: 00025 /* QRegExp rxLineEndedWithAColon; 00026 QRegExp rxStopExecutionStmt; 00027 QRegExp rxHeaderKeyword; 00028 QRegExp rxOneLinerStmt;*/ 00029 QRegExp rxCompoundStmt; 00030 }; 00031 00032 #endif