object generating progress

This commit is contained in:
Sascha Kühl
2025-11-25 16:27:25 +01:00
parent ab7a2db869
commit f47b3bb87f
16 changed files with 198 additions and 242 deletions
+5 -1
View File
@@ -21,7 +21,7 @@ void object::add_constraint( class constraint c ) {
ref.owner_ = this;
}
const attribute* object::primary_key_attribute() const {
attribute* object::primary_key_attribute() const {
return pk_attribute_;
}
@@ -41,6 +41,10 @@ const std::string& object::alias() const {
return alias_;
}
void object::update_name(const std::string& name) {
name_ = name;
}
bool object::has_attributes() const {
return attributes_.empty();
}