mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 13:54:34 -06:00
* Format Svc and add to CI * Fix comlogger include * fix assert UTs * Fix static analysis warning * formatting
31 lines
582 B
C++
31 lines
582 B
C++
/*
|
|
* TestTelemRecvImpl.hpp
|
|
*
|
|
* Created on: Mar 28, 2014
|
|
* Author: tcanham
|
|
*/
|
|
|
|
#ifndef POSIX_TIME_HPP_
|
|
#define POSIX_TIME_HPP_
|
|
|
|
#include <Svc/PosixTime/PosixTimeComponentAc.hpp>
|
|
|
|
namespace Svc {
|
|
|
|
class PosixTime final : public PosixTimeComponentBase {
|
|
public:
|
|
explicit PosixTime(const char* compName);
|
|
virtual ~PosixTime();
|
|
|
|
protected:
|
|
void timeGetPort_handler(FwIndexType portNum, /*!< The port number*/
|
|
Fw::Time& time /*!< The U32 cmd argument*/
|
|
);
|
|
|
|
private:
|
|
};
|
|
|
|
} // namespace Svc
|
|
|
|
#endif /* POSIX_TIME_HPP_ */
|