#pragma once #include #include #include namespace eye { class Storage { public: static std::string GetEyeFilePath(); static bool Save(std::string const & filePath, std::vector const & src); static bool Load(std::string const & filePath, std::vector & dst); }; } // namespace eye