blob: 7fd7f03fb2147715b5aa5dcd0f2da3f6e3608831 [file] [log] [blame]
Cary Clarkf3949122018-08-07 16:38:21 -04001/*
2 * Copyright 2018 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef PathOpsDebug_DEFINED
9#define PathOpsDebug_DEFINED
10
11#include <stdio.h>
12
13class PathOpsDebug {
14public:
15 static bool gJson;
Cary Clarkda6289c2018-08-27 16:10:28 -040016 static bool gMarkJsonFlaky;
Cary Clarkf3949122018-08-07 16:38:21 -040017 static bool gOutFirst;
Cary Clark4533f3d2018-08-08 09:48:09 -040018 static bool gCheckForDuplicateNames;
Cary Clark9c9611f2018-08-08 13:17:25 -040019 static bool gOutputSVG;
Cary Clarkf3949122018-08-07 16:38:21 -040020 static FILE* gOut;
21};
22
23#endif