populate.h revision cc2ee177dbb3befca43e36cfc56778b006c3d050
1/**
2 * @file populate.h
3 * Fill up a profile_container from inverted profiles
4 *
5 * @remark Copyright 2003 OProfile authors
6 * @remark Read the file COPYING
7 *
8 * @author John Levon
9 * @author Philippe Elie
10 */
11
12#ifndef POPULATE_H
13#define POPULATE_H
14
15class profile_container;
16class inverted_profile;
17class string_filter;
18
19
20/// Load all sample file information for exactly one binary image.
21void
22populate_for_image(std::string const & archive_path,
23   profile_container & samples, inverted_profile const & ip,
24   string_filter const & symbol_filter, bool * has_debug_info);
25
26#endif /* POPULATE_H */
27