exlcuding ostream headers
This commit is contained in:
parent
afda3b2fa0
commit
4515c0d3cd
@ -3,6 +3,7 @@
|
||||
#include "../serviceinterface/ServiceInterfaceStream.h"
|
||||
#include "../globalfunctions/arrayprinter.h"
|
||||
#include <cstring>
|
||||
#include <algorithm>
|
||||
|
||||
template <typename T>
|
||||
PoolEntry<T>::PoolEntry(std::initializer_list<T> initValue, uint8_t setLength,
|
||||
|
@ -5,6 +5,8 @@
|
||||
#include "../objectmanager/ObjectManagerIF.h"
|
||||
#include "../returnvalues/HasReturnvaluesIF.h"
|
||||
|
||||
#include <utility>
|
||||
|
||||
class HealthTableIF: public ManagesHealthIF {
|
||||
public:
|
||||
virtual ~HealthTableIF() {}
|
||||
|
@ -1,6 +1,9 @@
|
||||
#include "ObjectManager.h"
|
||||
#include "../serviceinterface/ServiceInterfaceStream.h"
|
||||
|
||||
#if CPP_OSTREAM_ENABLED == 1
|
||||
#include <iomanip>
|
||||
#endif
|
||||
#include <cstdlib>
|
||||
|
||||
ObjectManager::ObjectManager( void (*setProducer)() ):
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include "../timemanager/Clock.h"
|
||||
#include "ServiceInterfaceBuffer.h"
|
||||
|
||||
#if CPP_OSTREAM_ENABLED == 1
|
||||
|
||||
#include "../timemanager/Clock.h"
|
||||
|
||||
#include "serviceInterfaceDefintions.h"
|
||||
#include <FSFWConfig.h>
|
||||
#include <cstring>
|
||||
#include <inttypes.h>
|
||||
|
||||
@ -252,3 +255,5 @@ void ServiceInterfaceBuffer::initSocket() {
|
||||
}
|
||||
|
||||
#endif //ML505
|
||||
|
||||
#endif /* CPP_OSTREAM_ENABLED == 1 */
|
||||
|
@ -3,6 +3,9 @@
|
||||
|
||||
#include "../returnvalues/HasReturnvaluesIF.h"
|
||||
#include <FSFWConfig.h>
|
||||
|
||||
#if CPP_OSTREAM_ENABLED == 1
|
||||
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
#include <iomanip>
|
||||
@ -147,5 +150,6 @@ private:
|
||||
};
|
||||
#endif //ML505
|
||||
|
||||
#endif /* CPP_OSTREAM_ENABLED == 1 */
|
||||
|
||||
#endif /* FRAMEWORK_SERVICEINTERFACE_SERVICEINTERFACEBUFFER_H_ */
|
||||
|
@ -1,5 +1,7 @@
|
||||
#include "ServiceInterfaceStream.h"
|
||||
|
||||
#if CPP_OSTREAM_ENABLED == 1
|
||||
|
||||
ServiceInterfaceStream::ServiceInterfaceStream(std::string setMessage,
|
||||
bool addCrToPreamble, bool buffered, bool errStream, uint16_t port) :
|
||||
std::ostream(&streambuf),
|
||||
@ -13,3 +15,5 @@ std::string* ServiceInterfaceStream::getPreamble() {
|
||||
return streambuf.getPreamble();
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -2,6 +2,9 @@
|
||||
#define FRAMEWORK_SERVICEINTERFACE_SERVICEINTERFACESTREAM_H_
|
||||
|
||||
#include "ServiceInterfaceBuffer.h"
|
||||
|
||||
#if CPP_OSTREAM_ENABLED == 1
|
||||
|
||||
#include <iostream>
|
||||
#include <cstdio>
|
||||
|
||||
@ -48,4 +51,6 @@ extern ServiceInterfaceStream warning;
|
||||
extern ServiceInterfaceStream error;
|
||||
}
|
||||
|
||||
#endif /* CPP_OSTREAM_ENABLED == 1 */
|
||||
|
||||
#endif /* FRAMEWORK_SERVICEINTERFACE_SERVICEINTERFACESTREAM_H_ */
|
||||
|
Loading…
Reference in New Issue
Block a user