F´ Flight Software - C/C++ Documentation  NASA-v1.5.0
A framework for building embedded system applications to NASA flight quality standards.
Log.hpp
Go to the documentation of this file.
1 
6 #ifndef _Log_hpp_
7 #define _Log_hpp_
8 
10 #include <Fw/Logger/Logger.hpp>
11 
12 namespace Os {
13  class Log : public Fw::Logger {
14  public:
18  Log();
19 
32  void log(
33  const char* fmt,
34  POINTER_CAST a0 = 0,
35  POINTER_CAST a1 = 0,
36  POINTER_CAST a2 = 0,
37  POINTER_CAST a3 = 0,
38  POINTER_CAST a4 = 0,
39  POINTER_CAST a5 = 0,
40  POINTER_CAST a6 = 0,
41  POINTER_CAST a7 = 0,
42  POINTER_CAST a8 = 0,
43  POINTER_CAST a9 = 0
44  );
45  };
46 }
47 
48 #endif
Os
Definition: File.cpp:7
Os::Log::log
void log(const char *fmt, POINTER_CAST a0=0, POINTER_CAST a1=0, POINTER_CAST a2=0, POINTER_CAST a3=0, POINTER_CAST a4=0, POINTER_CAST a5=0, POINTER_CAST a6=0, POINTER_CAST a7=0, POINTER_CAST a8=0, POINTER_CAST a9=0)
Definition: LogPrintf.cpp:19
Fw::Logger
Definition: Logger.hpp:15
Os::Log::Log
Log()
Definition: LogPrintf.cpp:11
BasicTypes.hpp
Declares ISF basic types.
Os::Log
Definition: Log.hpp:13
Logger.hpp