blob: 5dc50600c5204a7db8b29974db97c449c99004ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// file : butl/manifest-forward -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#ifndef BUTL_MANIFEST_FORWARD
#define BUTL_MANIFEST_FORWARD
namespace butl
{
class manifest_parser;
class manifest_serializer;
class manifest_name_value;
}
#endif // BUTL_MANIFEST_FORWARD
|