mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-03-12 04:36:29 -07:00
11 lines
279 B
C++
11 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
|