From 5faac515854cb837e6700f2777dcf41c7cb7a6c5 Mon Sep 17 00:00:00 2001 From: David Schneller Date: Tue, 14 May 2024 02:00:05 +0200 Subject: [PATCH] Add IWYU pragmas --- fty.hpp | 3 +++ include/FtyInternals.hpp | 3 +++ 2 files changed, 6 insertions(+) diff --git a/fty.hpp b/fty.hpp index 6174027..0e0d6c7 100644 --- a/fty.hpp +++ b/fty.hpp @@ -1,11 +1,14 @@ #ifndef FTY_CONVERTER_FTY_HPP #define FTY_CONVERTER_FTY_HPP +// IWYU pragma: begin_exports #include "include/BlockParser.hpp" #include "include/BlockProcessor.hpp" #include "include/FtyInternals.hpp" #include "include/FtyPolicies.hpp" #include "include/StringProcessor.h" +// IWYU pragma: end_exports + #include #include diff --git a/include/FtyInternals.hpp b/include/FtyInternals.hpp index 4cc42df..91474b2 100644 --- a/include/FtyInternals.hpp +++ b/include/FtyInternals.hpp @@ -1,8 +1,11 @@ #ifndef PARSER_FTY_H #define PARSER_FTY_H +// IWYU pragma: begin_exports #include "FtyDataTypes.hpp" #include "FtyExceptions.hpp" +// IWYU pragma: end_exports + #include #endif // PARSER_FTY_H \ No newline at end of file