cmake/Source/bindexplib.h

22 lines
459 B
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2016-03-13 13:35:51 +01:00
#ifndef bindexplib_h
#define bindexplib_h
2016-10-30 18:24:19 +01:00
#include <cmConfigure.h>
2016-03-13 13:35:51 +01:00
#include "cmStandardIncludes.h"
class bindexplib
2012-02-18 12:40:36 +02:00
{
2016-03-13 13:35:51 +01:00
public:
bindexplib() {}
bool AddObjectFile(const char* filename);
void WriteFile(FILE* file);
private:
std::set<std::string> Symbols;
std::set<std::string> DataSymbols;
};
#endif