Cary Clark | f394912 | 2018-08-07 16:38:21 -0400 | [diff] [blame] | 1 | /* |
| 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 | |
| 13 | class PathOpsDebug { |
| 14 | public: |
| 15 | static bool gJson; |
Cary Clark | da6289c | 2018-08-27 16:10:28 -0400 | [diff] [blame] | 16 | static bool gMarkJsonFlaky; |
Cary Clark | f394912 | 2018-08-07 16:38:21 -0400 | [diff] [blame] | 17 | static bool gOutFirst; |
Cary Clark | 4533f3d | 2018-08-08 09:48:09 -0400 | [diff] [blame] | 18 | static bool gCheckForDuplicateNames; |
Cary Clark | 9c9611f | 2018-08-08 13:17:25 -0400 | [diff] [blame] | 19 | static bool gOutputSVG; |
Cary Clark | f394912 | 2018-08-07 16:38:21 -0400 | [diff] [blame] | 20 | static FILE* gOut; |
| 21 | }; |
| 22 | |
| 23 | #endif |