Vessel edit dialog

This commit is contained in:
Andrew nuark G 2020-12-23 18:43:41 +07:00
parent 9686b96d8a
commit eb097588ba
21 changed files with 589 additions and 97 deletions

View file

@ -10,12 +10,12 @@
class cargo_entity : public IEntity {
private:
entity_id _id;
entity_id _id = 0;
QString _title;
unsigned int _volume;
unsigned int _volume = 50000;
public:
cargo_entity() = default;
cargo_entity();
cargo_entity(const QString &title, unsigned int volume);
entity_id id() const;