Services and Modeling for Embedded Software Development
Embecosm divider strip
Prev  Next

5.3.1.  Included Headers

The logger will be doing a certain amount of stream IO, so includes the C++ headers that define stream manipulation functions. The POSIX standard integer types are also included.

#include <iostream>
#include <iomanip>
#include <stdint.h>

#include "LoggerSC.h"
	
Embecosm divider strip