diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-09-13 12:51:07 +0200 |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-09-16 18:18:48 +0200 |
commit | 77983c814725317e990315be8bc8d5b93fa6ffbd (patch) | |
tree | 298c64ad632bc611c9bf12d428e2e7c970846211 /Source/cmQtAutoMocUic.h | |
parent | f9e5441eb43d3238211685cded447141082e37b8 (diff) | |
download | cmake-77983c814725317e990315be8bc8d5b93fa6ffbd.tar.gz |
Autogen: Add IsHeader flag to SourceFileT class
Diffstat (limited to 'Source/cmQtAutoMocUic.h')
-rw-r--r-- | Source/cmQtAutoMocUic.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmQtAutoMocUic.h b/Source/cmQtAutoMocUic.h index d77e774a1f..71cd5f57cc 100644 --- a/Source/cmQtAutoMocUic.h +++ b/Source/cmQtAutoMocUic.h @@ -136,6 +136,7 @@ public: cmFileTime FileTime; ParseCacheT::FileHandleT ParseData; std::string BuildPath; + bool IsHeader = false; bool Moc = false; bool Uic = false; }; @@ -402,10 +403,8 @@ public: cm::string_view includeBase); bool RegisterIncluded(std::string const& includeString, SourceFileHandleT includerFileHandle, - SourceFileHandleT sourceFileHandle, - bool sourceIsHeader) const; - void RegisterMapping(MappingHandleT mappingHandle, - bool sourceIsHeader) const; + SourceFileHandleT sourceFileHandle) const; + void RegisterMapping(MappingHandleT mappingHandle) const; std::string MessageHeader(cm::string_view headerBase) const; }; |