Mike

Results 6 comments of Mike

Hey again. So I am getting a compile error. My config is gcc 11.4, boost 1.85, and c++20 (actual flag for 11.4 is c++2a). I tested both my config and...

Well I'm by no means an expert on this topic. ODB, the other ORM I mentioned, has a version column that is checked before every modifying transaction against version number...

Thanks for the feedback! I will give this a shot when I have time.

The following worked for me: ``` namespace org::freedesktop::systemd1 { INTERFACE(Manager) { Method GetUnit; Method ListUnits; Manager() : INIT(GetUnit), INIT(ListUnits) {} }; INTERFACE(Unit) { Property ActiveState; Unit() : INIT(ActiveState) {} };...

Thanks for the quick reply. After looking at my requirements and your suggestion, I've decided to check TTY and then generate the tables to avoid the performance hit, only applying...