Jpp  18.0.0-rc.2
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Classes | Functions
utctime.hh File Reference
#include <ostream>
#include <stdint.h>
#include <arpa/inet.h>

Go to the source code of this file.

Classes

struct  UTCTime
 

Functions

std::ostream & operator<< (std::ostream &stream, const UTCTime &t)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  stream,
const UTCTime t 
)
inline

Definition at line 34 of file utctime.hh.

35 {
36  return stream << "Seconds: " << t.sec() << '\n'
37  << "Tics: " << t.tics();
38 }
uint32_t sec() const
Definition: utctime.hh:17
uint32_t tics() const
Definition: utctime.hh:22