2018-08-07 20:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PathOpsDebug_DEFINED
|
|
|
|
#define PathOpsDebug_DEFINED
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
class PathOpsDebug {
|
|
|
|
public:
|
|
|
|
static bool gJson;
|
|
|
|
static bool gOutFirst;
|
2018-08-08 13:48:09 +00:00
|
|
|
static bool gCheckForDuplicateNames;
|
2018-08-07 20:38:21 +00:00
|
|
|
static FILE* gOut;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|