Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:02:33

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 }