added date_type_t, time_type_t and timestamp, ensure allocated postgres resources are released, split repository into basic_repository and repository.

This commit is contained in:
2026-01-06 15:43:20 +01:00
parent f07a360da2
commit 0c6b5a0a93
60 changed files with 1132 additions and 1225 deletions
+2 -2
View File
@@ -58,11 +58,11 @@ public:
[[nodiscard]] bool endpoints_empty() const;
protected:
basic_object_info(std::shared_ptr<repository_node> node, std::shared_ptr<class object> &&obj);
basic_object_info(const repository_node& node, const std::shared_ptr<class object> &obj);
protected:
std::shared_ptr<class object> object_;
std::shared_ptr<repository_node> node_; /**< prototype node of the represented object type */
const repository_node& node_; /**< prototype node of the represented object type */
t_endpoint_map relation_endpoints_;
};