renamed class attribute_definition to attribute
This commit is contained in:
@@ -12,15 +12,15 @@ public:
|
||||
using create_func = std::function<std::unique_ptr<Type>()>;
|
||||
|
||||
object_info(const std::shared_ptr<repository_node>& node,
|
||||
const std::vector<attribute_definition> &attributes,
|
||||
const std::vector<attribute> &attributes,
|
||||
utils::identifier &&pk,
|
||||
const std::shared_ptr<attribute_definition> &ref_column,
|
||||
const std::shared_ptr<attribute> &ref_column,
|
||||
create_func&& creator)
|
||||
: basic_object_info(node, attributes, std::move(pk), ref_column)
|
||||
, creator_(std::move(creator)){
|
||||
}
|
||||
object_info(const std::shared_ptr<repository_node>& node,
|
||||
const std::vector<attribute_definition> &attributes,
|
||||
const std::vector<attribute> &attributes,
|
||||
create_func&& creator)
|
||||
: basic_object_info(node, attributes)
|
||||
, creator_(std::move(creator)){
|
||||
|
||||
Reference in New Issue
Block a user