aboutsummaryrefslogtreecommitdiff
path: root/libbutl/manifest-forward.hxx
blob: 1a582de691fb643b7ecae38a2951132ca89d46cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// file      : libbutl/manifest-forward.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#pragma once

namespace butl
{
  class manifest_parser;
  class manifest_serializer;
  class manifest_name_value;

  // The way manifest implementation should proceed when unknown value is
  // encountered during parsing.
  //
  enum class manifest_unknown_mode
  {
    skip,
    stop,
    fail
  };
}