// // Role.h // // This file has been generated from ORM.xml. Do not edit. // #ifndef ORM_Role_INCLUDED #define ORM_Role_INCLUDED #include "Poco/ActiveRecord/ActiveRecord.h" namespace ORM { class Role: public Poco::ActiveRecord::ActiveRecord { public: using Ptr = Poco::AutoPtr; explicit Role(ID id); Role() = default; Role(const Role& other); ~Role() = default; const std::string& name() const; Role& name(const std::string& value); const std::string& description() const; Role& description(const std::string& value); static Ptr find(Poco::ActiveRecord::Context::Ptr pContext, const ID& id); void insert(); void update(); void remove(); static const std::vector& columns(); static const std::string& table(); private: std::string _name; std::string _description; friend class Poco::Data::TypeHandler; }; inline const std::string& Role::name() const { return _name; } inline Role& Role::name(const std::string& value) { _name = value; return *this; } inline const std::string& Role::description() const { return _description; } inline Role& Role::description(const std::string& value) { _description = value; return *this; } } // namespace ORM namespace Poco { namespace Data { template <> class TypeHandler { public: static std::size_t size() { return 2; } static void bind(std::size_t pos, const ORM::Role& ar, AbstractBinder::Ptr pBinder, AbstractBinder::Direction dir) { TypeHandler::bind(pos++, ar._name, pBinder, dir); TypeHandler::bind(pos++, ar._description, pBinder, dir); } static void extract(std::size_t pos, ORM::Role& ar, const ORM::Role& deflt, AbstractExtractor::Ptr pExtr) { TypeHandler::extract(pos++, ar._name, deflt._name, pExtr); TypeHandler::extract(pos++, ar._description, deflt._description, pExtr); } static void prepare(std::size_t pos, const ORM::Role& ar, AbstractPreparator::Ptr pPrep) { TypeHandler::prepare(pos++, ar._name, pPrep); TypeHandler::prepare(pos++, ar._description, pPrep); } }; } } // namespace Poco::Data #endif // ORM_Role_INCLUDED