#pragma once #ifndef BASETIME_H #define BASETIME_H #include "common/Defines.h" #if OMNETPP #include #else #include #endif namespace ubeeme { namespace moversight { #if OMNETPP /** * @brief The base time within moversight */ typedef simtime_t BaseTime; #else /** * @brief The base time within moversight */ typedef QTime BaseTime; #endif } } #endif // BASETIME_H