blob: 897bfa7985983a865dd8680924ecac5f55f967bc [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;
16 static bool gOutFirst;
Cary Clark4533f3d2018-08-08 09:48:09 -040017 static bool gCheckForDuplicateNames;
Cary Clark9c9611f2018-08-08 13:17:25 -040018 static bool gOutputSVG;
Cary Clarkf3949122018-08-07 16:38:21 -040019 static FILE* gOut;
20};
21
22#endif