diff --git a/CMakeLists.txt b/CMakeLists.txt index 8717d5e..edbfade 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -94,7 +94,6 @@ add_library( "${CMAKE_CURRENT_SOURCE_DIR}/src/types/irods/rcConnect.cpp" "${CMAKE_CURRENT_SOURCE_DIR}/src/types/irods/rodsDef.cpp" "${CMAKE_CURRENT_SOURCE_DIR}/src/types/irods/rodsError.cpp" - "${CMAKE_CURRENT_SOURCE_DIR}/src/types/irods/rodsGeneralUpdate.cpp" "${CMAKE_CURRENT_SOURCE_DIR}/src/types/irods/rodsGenQuery.cpp" "${CMAKE_CURRENT_SOURCE_DIR}/src/types/irods/rodsType.cpp" "${CMAKE_CURRENT_SOURCE_DIR}/src/types/irods/rodsUser.cpp" @@ -149,7 +148,6 @@ set( "${CMAKE_CURRENT_SOURCE_DIR}/include/irods/private/re/python/types/irods/rcConnect.hpp" "${CMAKE_CURRENT_SOURCE_DIR}/include/irods/private/re/python/types/irods/rodsDef.hpp" "${CMAKE_CURRENT_SOURCE_DIR}/include/irods/private/re/python/types/irods/rodsError.hpp" - "${CMAKE_CURRENT_SOURCE_DIR}/include/irods/private/re/python/types/irods/rodsGeneralUpdate.hpp" "${CMAKE_CURRENT_SOURCE_DIR}/include/irods/private/re/python/types/irods/rodsGenQuery.hpp" "${CMAKE_CURRENT_SOURCE_DIR}/include/irods/private/re/python/types/irods/rodsType.hpp" "${CMAKE_CURRENT_SOURCE_DIR}/include/irods/private/re/python/types/irods/rodsUser.hpp" diff --git a/include/irods/private/re/python/irods_types.hpp b/include/irods/private/re/python/irods_types.hpp index 9d507d6..17e3408 100644 --- a/include/irods/private/re/python/irods_types.hpp +++ b/include/irods/private/re/python/irods_types.hpp @@ -19,7 +19,6 @@ #include #include #include -#include #include #include #include @@ -71,10 +70,6 @@ using list_of_irods_types = type_sequence< float, genQueryInp_t, genQueryOut_t, -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wdeprecated-declarations" - generalUpdateInp_t, -#pragma clang diagnostic pop icatSessionStruct, in_addr, int, diff --git a/include/irods/private/re/python/types/irods/rodsGeneralUpdate.hpp b/include/irods/private/re/python/types/irods/rodsGeneralUpdate.hpp deleted file mode 100644 index a924f86..0000000 --- a/include/irods/private/re/python/types/irods/rodsGeneralUpdate.hpp +++ /dev/null @@ -1,9 +0,0 @@ -#ifndef RE_PYTHON_TYPES_IRODS_RODSGENERALUPDATE_HPP -#define RE_PYTHON_TYPES_IRODS_RODSGENERALUPDATE_HPP - -namespace irods::re::python::types -{ - void export_GeneralUpdateInp(); -} //namespace irods::re::python::types - -#endif // RE_PYTHON_TYPES_IRODS_RODSGENERALUPDATE_HPP diff --git a/src/irods_types.cpp b/src/irods_types.cpp index a725b29..3c20dd2 100644 --- a/src/irods_types.cpp +++ b/src/irods_types.cpp @@ -43,7 +43,6 @@ #include "irods/private/re/python/types/irods/rcConnect.hpp" #include "irods/private/re/python/types/irods/rodsDef.hpp" #include "irods/private/re/python/types/irods/rodsError.hpp" -#include "irods/private/re/python/types/irods/rodsGeneralUpdate.hpp" #include "irods/private/re/python/types/irods/rodsGenQuery.hpp" #include "irods/private/re/python/types/irods/rodsType.hpp" #include "irods/private/re/python/types/irods/rodsUser.hpp" @@ -175,8 +174,6 @@ namespace py_types::export_IcatSessionStruct(); - py_types::export_GeneralUpdateInp(); - py_types::export_Timeval(); py_types::export_MsgHeader(); diff --git a/src/types/irods/rodsGeneralUpdate.cpp b/src/types/irods/rodsGeneralUpdate.cpp deleted file mode 100644 index 439274d..0000000 --- a/src/types/irods/rodsGeneralUpdate.cpp +++ /dev/null @@ -1,41 +0,0 @@ -// include this first for defines and pyconfig -#include "irods/private/re/python/types/config.hpp" - -#include "irods/private/re/python/types/irods/rodsGeneralUpdate.hpp" - -#include - -#include "irods/private/re/python/types/init_struct.hpp" - -#include -#include -#pragma GCC diagnostic push -#if PY_VERSION_HEX < 0x030400A2 -# pragma GCC diagnostic ignored "-Wregister" -#endif -#if PY_VERSION_HEX >= 0x03090000 && BOOST_VERSION < 107500 -# pragma GCC diagnostic ignored "-Wdeprecated-declarations" -#endif -#include -#pragma GCC diagnostic pop - -namespace bp = boost::python; - -namespace irods::re::python::types -{ - __attribute__((visibility("hidden"))) void export_GeneralUpdateInp() - { -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wdeprecated-declarations" - // clang-format off - bp::class_("GeneralUpdateInp", bp::no_init) - .def("__init__", make_init_function( - &generalUpdateInp_t::type, - &generalUpdateInp_t::values)) - .add_property("type", &generalUpdateInp_t::type) - .add_property("values", &generalUpdateInp_t::values) - ; - // clang-format on -#pragma clang diagnostic pop - } -} //namespace irods::re::python::types