blob: aad2ae6b4caa5ab5d324d6bac0bfa8159bd70614 [file] [log] [blame]
#ifndef CALLGRAPHDRAWER_H
#define CALLGRAPHDRAWER_H
#include "GraphDrawer.h"
namespace llvm {
class Module;
}
//===----------------------------------------------------------------------===//
// CallGraphDrawer interface
class CallGraphDrawer : public GraphDrawer {
public:
wxImage *drawModuleGraph (llvm::Module *M);
CallGraphDrawer (wxWindow *parent) : GraphDrawer (parent) { }
std::string getDisplayTitle (TVTreeItemData *item);
};
#endif // CALLGRAPHDRAWER_H