| 67 | std::string rule_root; |
| 68 | std::string rule_device_class; |
| 69 | struct Step { |
| 70 | Step(const std::string &_op, const std::string &_type, int _n) : |
| 71 | op(_op), |
| 72 | type(_type), |
| 73 | n(_n) {} |
| 74 | std::string op; |
| 75 | std::string type; |
| 76 | int n; |
| 77 | }; |
| 78 | std::vector<Step> rule_steps; |
| 79 | |
| 80 | explicit ErasureCodeLrc(const std::string &dir) |
no outgoing calls
no test coverage detected