Warning, file /include/nopayloadclient/moment.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #pragma once
0002
0003 #include <nopayloadclient/exception.hpp>
0004
0005
0006 namespace nopayloadclient {
0007
0008 using ll = long long;
0009
0010 struct Moment {
0011 ll major_;
0012 ll minor_;
0013 Moment() : major_(0), minor_(0) {};
0014 Moment(ll ma, ll mi);
0015 bool operator< (const Moment& that);
0016 friend std::ostream& operator<< (std::ostream& os, const Moment& m);
0017 };
0018
0019 }