Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Document.cpp 248 B
//
// Created by tomas on 3/24/20.
//

#include "Document.h"

Document::Document(int id, double weight)
        : ID(id), weight(weight) {}

int Document::getID() const {
    return ID;
}

double Document::getWeight() const {
    return weight;
}