applied formatting
This commit is contained in:
@ -1,11 +1,12 @@
|
||||
#ifndef MISSION_UTILITY_TIMESTAMP_H_
|
||||
#define MISSION_UTILITY_TIMESTAMP_H_
|
||||
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include <iomanip>
|
||||
#include "fsfw/timemanager/Clock.h"
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
|
||||
#include "fsfw/returnvalues/HasReturnvaluesIF.h"
|
||||
#include "fsfw/timemanager/Clock.h"
|
||||
|
||||
/**
|
||||
* @brief This class generates timestamps for files.
|
||||
@ -13,18 +14,18 @@
|
||||
* @author J. Meier
|
||||
*/
|
||||
class Timestamp : public HasReturnvaluesIF {
|
||||
public:
|
||||
Timestamp();
|
||||
virtual ~Timestamp();
|
||||
public:
|
||||
Timestamp();
|
||||
virtual ~Timestamp();
|
||||
|
||||
/**
|
||||
* @brief Returns the timestamp string
|
||||
*/
|
||||
std::string str();
|
||||
/**
|
||||
* @brief Returns the timestamp string
|
||||
*/
|
||||
std::string str();
|
||||
|
||||
private:
|
||||
std::stringstream timestamp;
|
||||
Clock::TimeOfDay_t time;
|
||||
private:
|
||||
std::stringstream timestamp;
|
||||
Clock::TimeOfDay_t time;
|
||||
};
|
||||
|
||||
#endif /* MISSION_UTILITY_TIMESTAMP_H_ */
|
||||
|
Reference in New Issue
Block a user