aboutsummaryrefslogtreecommitdiff
path: root/libbutl/manifest-forward.hxx
blob: a9617077250892fc0b9a6105d17199f3e6ce15ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// file      : libbutl/manifest-forward.hxx -*- C++ -*-
// 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
  };
}