1// Copyright 2012 Google Inc. All Rights Reserved.
2// Author: keir@google.com (Keir Mierle)
3//
4// This is a shim header that redirects the Ceres includes of "glog/logging.h"
5// to the google3 logging headers.
6
7#ifndef GLOG_LOGGING_H_
8#define GLOG_LOGGING_H_
9
10#include "base/logging.h"
11
12namespace google {
13
14inline void InitGoogleLogging(const char* argv0) {
15  // The gflags shim in //third_party/ceres/google/gflags/gflags.h
16  // already calls InitGoogle, which gets the logging initialized.
17}
18
19}  // namespace google
20
21#endif  // GLOG_LOGGING_H_
22