Options.h 469 B

123456789101112131415161718
  1. // Copyright (c) 2012 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef TOOLS_CLANG_PLUGINS_OPTIONS_H_
  5. #define TOOLS_CLANG_PLUGINS_OPTIONS_H_
  6. namespace chrome_checker {
  7. struct Options {
  8. bool check_base_classes = false;
  9. bool check_ipc = false;
  10. bool check_gmock_objects = false;
  11. };
  12. } // namespace chrome_checker
  13. #endif // TOOLS_CLANG_PLUGINS_OPTIONS_H_