PathOpsDebug.h 438 B

1234567891011121314151617181920212223
  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. #ifndef PathOpsDebug_DEFINED
  8. #define PathOpsDebug_DEFINED
  9. #include <stdio.h>
  10. class PathOpsDebug {
  11. public:
  12. static bool gJson;
  13. static bool gMarkJsonFlaky;
  14. static bool gOutFirst;
  15. static bool gCheckForDuplicateNames;
  16. static bool gOutputSVG;
  17. static FILE* gOut;
  18. };
  19. #endif