| 8 | namespace ftg { |
| 9 | |
| 10 | class APIJsonLoader : public APILoader { |
| 11 | public: |
| 12 | APIJsonLoader(std::string JsonFilePath) : JsonFilePath(JsonFilePath) {} |
| 13 | const std::set<std::string> load() override; |
| 14 | |
| 15 | private: |
| 16 | bool isDeprecatedLibrary(std::string LibName); |
| 17 | std::string JsonFilePath; |
| 18 | }; |
| 19 | |
| 20 | } // namespace ftg |
| 21 | #endif // FTG_APILOADER_APIJSONLOADER_H |