diff options
Diffstat (limited to 'libpqpp/pq-helpers.h')
-rw-r--r-- | libpqpp/pq-helpers.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libpqpp/pq-helpers.h b/libpqpp/pq-helpers.h new file mode 100644 index 0000000..76e5057 --- /dev/null +++ b/libpqpp/pq-helpers.h @@ -0,0 +1,14 @@ +#ifndef PQ_HELPERS_H +#define PQ_HELPERS_H + +namespace PQ { + template<auto func> struct pq_deleter { + void + operator()(auto p) const + { + func(p); + } + }; +} + +#endif |