forked from LearningByExample/ModernCppCI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalc_step.h
51 lines (36 loc) · 1.21 KB
/
calc_step.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* Distributed under the MIT License (See accompanying file /LICENSE )
*/
#ifndef CALC_STEP_HPP
#define CALC_STEP_HPP
// MS compatible compilers support #pragma once
#if defined(_MSC_VER)
#pragma once
#endif
#include <functional>
#include <string>
namespace ModernCppCI {
using Operation = std::function<int(const int &, const int &)>;
class CalcStep {
private:
CalcStep() noexcept {};
public:
explicit CalcStep(const int &value) noexcept
: value_{value}, has_value_{true} {}
CalcStep(const std::string &name, const Operation &operation) noexcept
: operation_{operation}, operation_name_{name}, has_operation_{true} {}
auto has_value() const noexcept { return has_value_; }
auto has_operation() const noexcept { return has_operation_; }
auto value() const noexcept { return value_; }
auto operation() const noexcept { return operation_; }
auto operation_name() const noexcept { return operation_name_; }
friend std::ostream &operator<<(std::ostream &stream, const CalcStep &step);
private:
int value_{0};
Operation operation_{nullptr};
std::string operation_name_{""};
bool has_value_{false};
bool has_operation_{false};
};
} // namespace ModernCppCI
#endif // CALC_STEP_HPP