mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-13 01:57:36 -07:00
10 lines
279 B
C++
10 lines
279 B
C++
#include <pqxx/internal/callgate.hxx>
|
|
|
|
namespace pqxx::internal::gate
|
|
{
|
|
class PQXX_PRIVATE transaction_sql_cursor : callgate<transaction_base>
|
|
{
|
|
friend class pqxx::internal::sql_cursor;
|
|
transaction_sql_cursor(reference x) : super(x) {}
|
|
};
|
|
} // namespace pqxx::internal::gate
|