cmake/Source/bindexplib.h

25 lines
527 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
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h"
2016-10-30 18:24:19 +01:00
2017-04-14 19:02:05 +02:00
#include <set>
#include <stdio.h>
#include <string>
2016-03-13 13:35:51 +01:00
class bindexplib
2012-02-18 12:40:36 +02:00
{
2016-03-13 13:35:51 +01:00
public:
bindexplib() {}
2017-07-20 19:35:53 +02:00
bool AddDefinitionFile(const char* filename);
2016-03-13 13:35:51 +01:00
bool AddObjectFile(const char* filename);
void WriteFile(FILE* file);
2017-07-20 19:35:53 +02:00
2016-03-13 13:35:51 +01:00
private:
std::set<std::string> Symbols;
std::set<std::string> DataSymbols;
};
#endif