blob: bc2766aa24091577d8702b5f509d6a5ca69c494a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#pragma once
#include <unordered_map>
#include "BinaryParagraph.h"
namespace vcpkg
{
enum class InstallState
{
ERROR_STATE,
NOT_INSTALLED,
HALF_INSTALLED,
INSTALLED,
};
enum class Want
{
ERROR_STATE,
UNKNOWN,
INSTALL,
HOLD,
DEINSTALL,
PURGE
};
struct StatusParagraph
{
StatusParagraph();
explicit StatusParagraph(const std::unordered_map<std::string, std::string>& fields);
BinaryParagraph package;
Want want;
InstallState state;
};
std::ostream& operator<<(std::ostream& os, const StatusParagraph& pgh);
std::string to_string(InstallState f);
std::string to_string(Want f);
}
|