1 //===-- OsLogger.h ----------------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef OsLogger_h 11 #define OsLogger_h 12 13 #include "DNBDefs.h" 14 15 class OsLogger { 16 public: 17 static DNBCallbackLog GetLogFunction(); 18 }; 19 20 #endif /* OsLogger_h */ 21