aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/ParagraphParseResult.h
blob: 0d1f13f6135d2de3a4b77ae3719683eb782fc217 (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
#pragma once
#include <system_error>

namespace vcpkg
{
    enum class ParagraphParseResult
    {
        SUCCESS = 0,
        EXPECTED_ONE_PARAGRAPH
    };

    struct ParagraphParseResultCategoryImpl final : std::error_category
    {
        virtual const char* name() const noexcept override;

        virtual std::string message(int ev) const noexcept override;
    };

    const std::error_category& paragraph_parse_result_category();

    std::error_code make_error_code(ParagraphParseResult e);

    ParagraphParseResult to_paragraph_parse_result(int i);

    ParagraphParseResult to_paragraph_parse_result(std::error_code ec);
}

// Enable implicit conversion to std::error_code
namespace std
{
    template <>
    struct is_error_code_enum<vcpkg::ParagraphParseResult> : ::std::true_type
    {
    };
}