
{ BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Stroustrup, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -4, NamespaceIndentation: All } (this is the Visual Studio preset with only "BreakBeforeBraces" changed from Allman to Stroustrup)
14 lines
271 B
C
14 lines
271 B
C
#ifndef TEXT_FILE_FUNCTIONS_H
|
|
#define TEXT_FILE_FUNCTIONS_H
|
|
|
|
#include "aoapplication.h"
|
|
#include "file_functions.h"
|
|
#include <QColor>
|
|
#include <QDebug>
|
|
#include <QSettings>
|
|
#include <QStringList>
|
|
#include <QTextStream>
|
|
#include <QVector>
|
|
|
|
#endif // TEXT_FILE_FUNCTIONS_H
|