#ifndef CHROME_ENTERPRISE_COMPANION_ENTERPRISE_COMPANION_H_
#define CHROME_ENTERPRISE_COMPANION_ENTERPRISE_COMPANION_H_
#include <optional>
#include "base/files/file_path.h"
#include "build/build_config.h"
namespace enterprise_companion {
extern const char kLoggingModuleSwitch[];
extern const char kCrashHandlerSwitch[];
extern const char kCrashMeSwitch[];
extern const char kInstallSwitch[];
#if BUILDFLAG(IS_MAC)
extern const char kNetWorkerSwitch[];
#endif
int EnterpriseCompanionMain(int argc, const char* const* argv);
std::optional<base::FilePath> GetLogFilePath();
}
#endif