File tree 3 files changed +22
-2
lines changed
3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -38,14 +38,14 @@ BreakBeforeTernaryOperators: true
38
38
BreakConstructorInitializersBeforeComma : false
39
39
BreakAfterJavaFieldAnnotations : false
40
40
BreakStringLiterals : true
41
- ColumnLimit : 100
41
+ ColumnLimit : 140
42
42
CommentPragmas : ' ^ IWYU pragma:'
43
43
ConstructorInitializerAllOnOneLineOrOnePerLine : true
44
44
ConstructorInitializerIndentWidth : 4
45
45
ContinuationIndentWidth : 4
46
46
Cpp11BracedListStyle : true
47
47
DerivePointerAlignment : true
48
- DisableFormat : false
48
+ DisableFormat : true
49
49
ExperimentalAutoDetectBinPacking : false
50
50
ForEachMacros : [ foreach, Q_FOREACH, BOOST_FOREACH ]
51
51
IncludeCategories :
Original file line number Diff line number Diff line change
1
+ // <hyper/_console/command.hpp> -*- C++ -*-
2
+
3
+ /* *
4
+ * Hyper
5
+ *
6
+ * (c) 2017 Axel Etcheverry
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+ #pragma once
12
+
13
+ #include < boost/program_options.hpp>
14
+
15
+ namespace hyper ::console {
16
+ namespace po = boost::program_options;
17
+
18
+ typedef int (*Command)(po::variables_map &vm, po::parsed_options &options, po::options_description &desc);
19
+ }
Original file line number Diff line number Diff line change 11
11
#pragma once
12
12
13
13
#include < hyper/_console/color.hpp>
14
+ #include < hyper/_console/command.hpp>
You can’t perform that action at this time.
0 commit comments