SWDEV-240807 - Fix header file

Remove class useage from header file

Change-Id: Ibe1a59241f000cc162dd865484c313e56c4db95f


[ROCm/clr commit: 223c0364f8]
This commit is contained in:
Christophe Paquot
2021-07-20 08:04:04 -07:00
committed by Christophe Paquot
parent d407cc46ee
commit 9488cd1194
3 changed files with 15 additions and 15 deletions
@@ -58,15 +58,15 @@ class hipGraphNode {
void SetLevel(uint32_t level) { level_ = level; }
};
class hipGraph {
class ihipGraph {
std::unordered_map<Node, size_t> nodeInDegree_; // count of in coming edges for every vertex
std::unordered_map<Node, size_t> nodeOutDegree_; // count of outgoing edges for every vertex
std::vector<Node> vertices_;
std::unordered_map<Node, std::vector<Node>> edges_;
public:
hipGraph() {}
~hipGraph(){};
ihipGraph() {}
~ihipGraph(){};
/// add node to the graph
hipError_t AddNode(const Node& node);
/// add edge to the graph