1 | // Aseprite |
---|---|
2 | // Copyright (C) 2001-2015 David Capello |
3 | // |
4 | // This program is distributed under the terms of |
5 | // the End-User License Agreement for Aseprite. |
6 | |
7 | #ifndef UPDATER_USER_AGENT_H_INCLUDED |
8 | #define UPDATER_USER_AGENT_H_INCLUDED |
9 | #pragma once |
10 | |
11 | #include "base/disable_copying.h" |
12 | |
13 | #include <iosfwd> |
14 | |
15 | namespace updater { |
16 | |
17 | std::string getUserAgent(); |
18 | |
19 | } // namespace updater |
20 | |
21 | #endif // UPDATER_USER_AGENT_H_INCLUDED |
22 |