include improvements taken over

This commit is contained in:
Robin Müller 2020-09-15 17:34:07 +02:00
parent 347d591def
commit 0d5724e3d4
2 changed files with 5 additions and 8 deletions

View File

@ -1,11 +1,8 @@
#include "../timemanager/CCSDSTime.h"
#include <stdio.h>
#include <inttypes.h>
#include <math.h>
#include <cstdio>
#include <cinttypes>
#include <cmath>
#ifndef SCNu8
#define SCNu8 "hhu"
#endif
CCSDSTime::CCSDSTime() {
}

View File

@ -3,9 +3,9 @@
// COULDDO: have calls in Clock.h which return time quality and use timespec accordingly
#include "../timemanager/Clock.h"
#include "Clock.h"
#include "../returnvalues/HasReturnvaluesIF.h"
#include <stdint.h>
#include <cstdint>
bool operator<(const timeval& lhs, const timeval& rhs);
bool operator<=(const timeval& lhs, const timeval& rhs);