#ifndef INTEGRAL_SAMPLE_H #define INTEGRAL_SAMPLE_H #include #include #include namespace IntegralSample_ { struct SignedValue { struct _alias_t { static constexpr const char _literal[] = "signed_value"; using _name_t = sqlpp::make_char_sequence; template struct _member_t { T signedValue; T& operator()() { return signedValue; } const T& operator()() const { return signedValue; } }; }; using _traits = sqlpp::make_traits; }; struct UnsignedValue { struct _alias_t { static constexpr const char _literal[] = "unsigned_value"; using _name_t = sqlpp::make_char_sequence; template struct _member_t { T unsignedValue; T& operator()() { return unsignedValue; } const T& operator()() const { return unsignedValue; } }; }; using _traits = sqlpp::make_traits; }; } // namespace IntegralSample_ struct IntegralSample : sqlpp::table_t { struct _alias_t { static constexpr const char _literal[] = "integral_sample"; using _name_t = sqlpp::make_char_sequence; template struct _member_t { T fpSample; T& operator()() { return fpSample; } const T& operator()() const { return fpSample; } }; }; }; #endif