1 /**************************************************************************** 2 * Copyright (C) 2006-2018 by Michel Ludwig (michel.ludwig@kdemail.net) * 3 *****************************************************************************/ 4 5 /************************************************************************** 6 * * 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. * 11 * * 12 ***************************************************************************/ 13 14 #ifndef KILECONSTANTS_H 15 #define KILECONSTANTS_H 16 17 namespace KileDocument { 18 enum Type {Undefined, Text, LaTeX, BibTeX, Script}; 19 20 } 21 22 #define LIST_SEPARATOR QDir::listSeparator() 23 24 #endif 25