Browse Source

branches2.hpp

toml4
Antonio SJ Musumeci 10 months ago
parent
commit
2c337dc007
  1. 7
      src/branches2.hpp

7
src/branches2.hpp

@ -2,13 +2,16 @@
#include <vector>
class Branch2Vec : public std::vector<Branch2>
class Branch2Vec
{
public:
uint64_t min_free_space;
private:
std::vector<Branch2> _branches;
};
class Branches2 : public std::vector<Branch2Vec>
class Branches2
{
public:
uint64_t min_free_space;

Loading…
Cancel
Save