blob: 5c224a792b380d59d560b29d7169891089c0b322 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// file : libbuild2/options-types.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#ifndef LIBBUILD2_OPTIONS_TYPES_HXX
#define LIBBUILD2_OPTIONS_TYPES_HXX
namespace build2
{
enum class structured_result_format
{
lines,
json
};
}
#endif // LIBBUILD2_OPTIONS_TYPES_HXX
|