anjuta: Fixed a memory leak
[anjuta.git] / plugins / language-support-cpp-java / cpp-java-indentation.h
blob54727ee47131910200e58c50ee9ba7856ec584c1
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * cpp-java-indentation.h
5 * Copyright (C) 2011 - Johannes Schmid
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "plugin.h"
23 void
24 cpp_indentation (IAnjutaEditor *editor,
25 IAnjutaIterable *insert_pos,
26 gchar ch,
27 CppJavaPlugin *plugin);
29 void
30 cpp_auto_indentation (IAnjutaEditor *editor,
31 CppJavaPlugin *plugin,
32 IAnjutaIterable *start,
33 IAnjutaIterable *end);
35 void
36 java_indentation (IAnjutaEditor *editor,
37 IAnjutaIterable *insert_pos,
38 gchar ch,
39 CppJavaPlugin *plugin);