mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-01 20:34:33 -07:00
13 lines
341 B
C++
13 lines
341 B
C++
#include <pqxx/internal/callgate.hxx>
|
|
|
|
namespace pqxx::internal::gate
|
|
{
|
|
class PQXX_PRIVATE result_sql_cursor : callgate<result const>
|
|
{
|
|
friend class pqxx::internal::sql_cursor;
|
|
|
|
result_sql_cursor(reference x) : super(x) {}
|
|
|
|
char const *cmd_status() const noexcept { return home().cmd_status(); }
|
|
};
|
|
} // namespace pqxx::internal::gate
|