1---
2Language:        Cpp
3# BasedOnStyle:  LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: true
6AlignEscapedNewlinesLeft: false
7AlignOperands:   true
8AlignTrailingComments: true
9AllowAllParametersOfDeclarationOnNextLine: true
10AllowShortBlocksOnASingleLine: false
11AllowShortCaseLabelsOnASingleLine: false
12AllowShortFunctionsOnASingleLine: false
13AllowShortIfStatementsOnASingleLine: false
14AllowShortLoopsOnASingleLine: false
15AlwaysBreakAfterDefinitionReturnType: false
16AlwaysBreakBeforeMultilineStrings: false
17AlwaysBreakTemplateDeclarations: false
18BinPackArguments: true
19BinPackParameters: true
20BreakBeforeBinaryOperators: None
21BreakBeforeBraces: Allman
22BreakBeforeTernaryOperators: true
23BreakConstructorInitializersBeforeComma: false
24ColumnLimit:     80
25CommentPragmas:  '^ IWYU pragma:'
26ConstructorInitializerAllOnOneLineOrOnePerLine: false
27ConstructorInitializerIndentWidth: 4
28ContinuationIndentWidth: 4
29Cpp11BracedListStyle: true
30DerivePointerAlignment: false
31DisableFormat:   false
32ExperimentalAutoDetectBinPacking: false
33ForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH ]
34IndentCaseLabels: false
35IndentWidth:     4
36IndentWrappedFunctionNames: false
37KeepEmptyLinesAtTheStartOfBlocks: true
38MaxEmptyLinesToKeep: 1
39NamespaceIndentation: None
40ObjCBlockIndentWidth: 2
41ObjCSpaceAfterProperty: false
42ObjCSpaceBeforeProtocolList: true
43PenaltyBreakBeforeFirstCallParameter: 19
44PenaltyBreakComment: 300
45PenaltyBreakFirstLessLess: 80
46PenaltyBreakString: 1000
47PenaltyExcessCharacter: 1000000
48PenaltyReturnTypeOnItsOwnLine: 60
49PointerAlignment: Right
50SpaceAfterCStyleCast: false
51SpaceBeforeAssignmentOperators: true
52SpaceBeforeParens: ControlStatements
53SpaceInEmptyParentheses: false
54SpacesBeforeTrailingComments: 1
55SpacesInAngles:  false
56SpacesInContainerLiterals: true
57SpacesInCStyleCastParentheses: false
58SpacesInParentheses: false
59SpacesInSquareBrackets: false
60Standard:        Cpp11
61TabWidth:        8
62UseTab:          Never
63...
64
65