blob: 089e57ee1a1eeead352bab17cb35060a2d0a63cd [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