mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-05 20:13:44 +02: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
|