12 lines
174 B
C++
12 lines
174 B
C++
#ifndef _PERF_ELF_H__
|
|
#define _PERF_ELF_H__
|
|
|
|
#include <set>
|
|
#include <string>
|
|
|
|
#include "symbol.h"
|
|
|
|
bool get_symbol_from_elf(std::set<symbol> &ss, const char *path);
|
|
|
|
#endif
|