cmake/Source/bindexplib.h

30 lines
857 B
C
Raw Normal View History

2012-02-18 12:40:36 +02:00
/*============================================================================
2016-03-13 13:35:51 +01:00
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
2012-02-18 12:40:36 +02:00
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License for more information.
============================================================================*/
2016-03-13 13:35:51 +01:00
#ifndef bindexplib_h
#define bindexplib_h
#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