Add qt example

This commit is contained in:
2020-06-21 14:37:54 +02:00
parent 59f7b0c1f2
commit 0700a93a4c
12 changed files with 396 additions and 0 deletions

24
.clang-format Normal file
View File

@@ -0,0 +1,24 @@
---
BasedOnStyle: LLVM
Language: Cpp
Standard: Cpp11
ColumnLimit: 160
IndentWidth: 4
AlignEscapedNewlines: DontAlign
AllowAllConstructorInitializersOnNextLine: false
AllowShortFunctionsOnASingleLine: Inline
AlwaysBreakTemplateDeclarations: true
BreakBeforeBinaryOperators: NonAssignment
BreakBeforeBraces: Stroustrup
BreakConstructorInitializers: BeforeComma
BreakInheritanceList: BeforeComma
ConstructorInitializerAllOnOneLineOrOnePerLine: true
IndentPPDirectives: BeforeHash
NamespaceIndentation: Inner
PointerAlignment: Left
SpaceAfterTemplateKeyword: false
SpaceBeforeParens: Never
SpaceBeforeRangeBasedForLoopColon: false
SpacesInContainerLiterals: false
...