fprime/Svc/PosixTime/PosixTime.hpp
Thomas Boyer-Chammard c69ff72110
Format Svc and add to CI (#3978)
* Format Svc and add to CI

* Fix comlogger include

* fix assert UTs

* Fix static analysis warning

* formatting
2025-08-04 16:21:47 -07:00

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_ */