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