2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2015-11-16 20:31:10 +00:00
|
|
|
#ifndef bindexplib_h
|
|
|
|
#define bindexplib_h
|
|
|
|
|
2016-09-01 18:05:48 +00:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2016-11-25 21:54:58 +00:00
|
|
|
#include <set>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string>
|
2015-11-16 20:31:10 +00:00
|
|
|
|
|
|
|
class bindexplib
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bindexplib() {}
|
|
|
|
bool AddObjectFile(const char* filename);
|
|
|
|
void WriteFile(FILE* file);
|
|
|
|
private:
|
|
|
|
std::set<std::string> Symbols;
|
|
|
|
std::set<std::string> DataSymbols;
|
|
|
|
};
|
|
|
|
#endif
|