From: Elena Mamontova <helenh463@gmail.com>
Date: Sun, 17 Jul 2016 16:54:12 +0000 (+0300)
Subject: Ticket. Get() function added.
X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/8e4f33741f54f48c28f04e74f1f3c0757723c111?hp=8ae4c5e8f4f88c52eb2947f9c9195f132785b46a

Ticket. Get() function added.
---

diff --git a/projects/stargazer/plugins/store/firebird/firebird_store.h b/projects/stargazer/plugins/store/firebird/firebird_store.h
index 688f0e88..d9c6af24 100644
--- a/projects/stargazer/plugins/store/firebird/firebird_store.h
+++ b/projects/stargazer/plugins/store/firebird/firebird_store.h
@@ -136,4 +136,13 @@ time_t ts2time_t(const IBPP::Timestamp & ts);
 void time_t2ts(time_t t, IBPP::Timestamp * ts);
 void ym2date(int year, int month, IBPP::Date * date);
 
+template <typename T>
+inline
+T Get(IBPP::Statement st, size_t pos)
+{
+    T value;
+    st->Get(pos, value);
+    return value;
+}
+
 #endif //FIREBIRD_STORE_H