Home | History | Annotate | Download | only in glog
      1 // Copyright 2012 Google Inc. All Rights Reserved.
      2 // Author: keir (at) 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 
     12 namespace google {
     13 
     14 inline 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