Line data Source code
1 : /**
2 : * @file
3 : *
4 : * @brief A configuration for a simple automerge
5 : *
6 : * @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
7 : *
8 : */
9 :
10 :
11 : #ifndef AUTOMERGECONFIGURATION_HPP_
12 : #define AUTOMERGECONFIGURATION_HPP_
13 :
14 : #include <merging/mergeconfiguration.hpp>
15 :
16 : namespace kdb
17 : {
18 :
19 : namespace tools
20 : {
21 :
22 : namespace merging
23 : {
24 :
25 1206 : class AutoMergeConfiguration : public MergeConfiguration
26 : {
27 : public:
28 : virtual void configureMerger (ThreeWayMerge & merger) override;
29 : };
30 : } // namespace merging
31 : } // namespace tools
32 : } // namespace kdb
33 :
34 : #endif /* AUTOMERGECONFIGURATION_HPP_ */
|