From 9b3c2d9d25d9c0213ef0af58c285d2713a020c8b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 3 Aug 2010 14:07:56 +0200 Subject: Generated code infrastructure Add prologue/epilogue support, version check, and pre/post inclusion. --- odb/options.ixx | 192 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 192 insertions(+) (limited to 'odb/options.ixx') diff --git a/odb/options.ixx b/odb/options.ixx index 9796a83..ea575c3 100644 --- a/odb/options.ixx +++ b/odb/options.ixx @@ -263,6 +263,198 @@ sql_suffix_specified () const return this->sql_suffix_specified_; } +inline const std::vector& options:: +hxx_prologue () const +{ + return this->hxx_prologue_; +} + +inline bool options:: +hxx_prologue_specified () const +{ + return this->hxx_prologue_specified_; +} + +inline const std::vector& options:: +ixx_prologue () const +{ + return this->ixx_prologue_; +} + +inline bool options:: +ixx_prologue_specified () const +{ + return this->ixx_prologue_specified_; +} + +inline const std::vector& options:: +cxx_prologue () const +{ + return this->cxx_prologue_; +} + +inline bool options:: +cxx_prologue_specified () const +{ + return this->cxx_prologue_specified_; +} + +inline const std::vector& options:: +sql_prologue () const +{ + return this->sql_prologue_; +} + +inline bool options:: +sql_prologue_specified () const +{ + return this->sql_prologue_specified_; +} + +inline const std::vector& options:: +hxx_epilogue () const +{ + return this->hxx_epilogue_; +} + +inline bool options:: +hxx_epilogue_specified () const +{ + return this->hxx_epilogue_specified_; +} + +inline const std::vector& options:: +ixx_epilogue () const +{ + return this->ixx_epilogue_; +} + +inline bool options:: +ixx_epilogue_specified () const +{ + return this->ixx_epilogue_specified_; +} + +inline const std::vector& options:: +cxx_epilogue () const +{ + return this->cxx_epilogue_; +} + +inline bool options:: +cxx_epilogue_specified () const +{ + return this->cxx_epilogue_specified_; +} + +inline const std::vector& options:: +sql_epilogue () const +{ + return this->sql_epilogue_; +} + +inline bool options:: +sql_epilogue_specified () const +{ + return this->sql_epilogue_specified_; +} + +inline const std::string& options:: +hxx_prologue_file () const +{ + return this->hxx_prologue_file_; +} + +inline bool options:: +hxx_prologue_file_specified () const +{ + return this->hxx_prologue_file_specified_; +} + +inline const std::string& options:: +ixx_prologue_file () const +{ + return this->ixx_prologue_file_; +} + +inline bool options:: +ixx_prologue_file_specified () const +{ + return this->ixx_prologue_file_specified_; +} + +inline const std::string& options:: +cxx_prologue_file () const +{ + return this->cxx_prologue_file_; +} + +inline bool options:: +cxx_prologue_file_specified () const +{ + return this->cxx_prologue_file_specified_; +} + +inline const std::string& options:: +sql_prologue_file () const +{ + return this->sql_prologue_file_; +} + +inline bool options:: +sql_prologue_file_specified () const +{ + return this->sql_prologue_file_specified_; +} + +inline const std::string& options:: +hxx_epilogue_file () const +{ + return this->hxx_epilogue_file_; +} + +inline bool options:: +hxx_epilogue_file_specified () const +{ + return this->hxx_epilogue_file_specified_; +} + +inline const std::string& options:: +ixx_epilogue_file () const +{ + return this->ixx_epilogue_file_; +} + +inline bool options:: +ixx_epilogue_file_specified () const +{ + return this->ixx_epilogue_file_specified_; +} + +inline const std::string& options:: +cxx_epilogue_file () const +{ + return this->cxx_epilogue_file_; +} + +inline bool options:: +cxx_epilogue_file_specified () const +{ + return this->cxx_epilogue_file_specified_; +} + +inline const std::string& options:: +sql_epilogue_file () const +{ + return this->sql_epilogue_file_; +} + +inline bool options:: +sql_epilogue_file_specified () const +{ + return this->sql_epilogue_file_specified_; +} + inline const bool& options:: include_with_brackets () const { -- cgit v1.1