| 41 | class GraphMeta { |
| 42 | public: |
| 43 | GraphMeta() |
| 44 | : name_("euler_default"), |
| 45 | version_("0"), |
| 46 | node_count_(0), |
| 47 | edge_count_(0), |
| 48 | partitions_num_(0) { |
| 49 | } |
| 50 | |
| 51 | GraphMeta(std::string name, |
| 52 | std::string version, |
nothing calls this directly
no outgoing calls
no test coverage detected