#include "model/recipe/ingredients/ingredientlistmodel.h" IngredientListModel::IngredientListModel(){ this->ingredients = vector(); } int IngredientListModel::rowCount(const QModelIndex &parent) const{ } QVariant IngredientListModel::data(const QModelIndex &index, int role) const{ } void IngredientListModel::setIngredients(vector ingredients){ this->ingredients = ingredients; }