bindexplib.h 548 B

123456789101112131415161718192021222324
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef bindexplib_h
  4. #define bindexplib_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include <set>
  7. #include <stdio.h>
  8. #include <string>
  9. class bindexplib
  10. {
  11. public:
  12. bindexplib() {}
  13. bool AddDefinitionFile(const char* filename);
  14. bool AddObjectFile(const char* filename);
  15. void WriteFile(FILE* file);
  16. private:
  17. std::set<std::string> Symbols;
  18. std::set<std::string> DataSymbols;
  19. };
  20. #endif