nicole mazzuca 6a41626eaf
[vcpkg] Format the C++ in CI (#11655)
* [vcpkg] Format the C++ in the CI

* format the C++

* CR
2020-07-06 16:45:34 -07:00

24 lines
413 B
C++

#pragma once
#include <string>
#include <vcpkg/base/files.h>
namespace vcpkg
{
struct UserConfig
{
std::string user_id;
std::string user_time;
std::string user_mac;
std::string last_completed_survey;
static UserConfig try_read_data(const Files::Filesystem& fs);
void try_write_data(Files::Filesystem& fs) const;
};
fs::path get_user_dir();
}