Deleted Added
full compact
DOTGraphTraits.h (208954) DOTGraphTraits.h (221345)
1//===-- llvm/Support/DotGraphTraits.h - Customize .dot output ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 75 unchanged lines hidden (view full) ---

84 template<typename GraphType>
85 static std::string getNodeAttributes(const void *Node,
86 const GraphType& Graph) {
87 return "";
88 }
89
90 /// If you want to override the dot attributes printed for a particular edge,
91 /// override this method.
1//===-- llvm/Support/DotGraphTraits.h - Customize .dot output ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 75 unchanged lines hidden (view full) ---

84 template<typename GraphType>
85 static std::string getNodeAttributes(const void *Node,
86 const GraphType& Graph) {
87 return "";
88 }
89
90 /// If you want to override the dot attributes printed for a particular edge,
91 /// override this method.
92 template
93 static std::string getEdgeAttributes(const void *Node, EdgeIter EI) {
92 template<typename EdgeIter, typename GraphType>
93 static std::string getEdgeAttributes(const void *Node, EdgeIter EI,
94 const GraphType& Graph) {
94 return "";
95 }
96
97 /// getEdgeSourceLabel - If you want to label the edge source itself,
98 /// implement this method.
99 template<typename EdgeIter>
100 static std::string getEdgeSourceLabel(const void *Node, EdgeIter I) {
101 return "";

--- 59 unchanged lines hidden ---
95 return "";
96 }
97
98 /// getEdgeSourceLabel - If you want to label the edge source itself,
99 /// implement this method.
100 template<typename EdgeIter>
101 static std::string getEdgeSourceLabel(const void *Node, EdgeIter I) {
102 return "";

--- 59 unchanged lines hidden ---