Files
Sourcetrail/src/lib_cxx/project/utilitySourceGroupCxx.h
T
Eberhard Graether b35d4657d5 data: Record errors in precompiled header generation
* also records include dependencies within precompiled header file
2019-07-31 23:28:22 +02:00

22 lines
576 B
C++

#ifndef UTILITY_SOURCE_GROUP_CXX_H
#define UTILITY_SOURCE_GROUP_CXX_H
#include <memory>
#include <string>
#include <vector>
class DialogView;
class SourceGroupSettingsCxx;
class StorageProvider;
class Task;
namespace utility
{
std::shared_ptr<Task> createBuildPchTask(
const SourceGroupSettingsCxx* settings, std::vector<std::wstring> compilerFlags,
std::shared_ptr<StorageProvider> storageProvider, std::shared_ptr<DialogView> dialogView);
std::vector<std::wstring> getIncludePchFlags(const SourceGroupSettingsCxx* settings);
}
#endif // UTILITY_SOURCE_GROUP_CXX_H