| 1 | #include "RepositoryChangeModel.h" |
| 2 | |
| 3 | RepositoryChangeModel::RepositoryChangeModel(const QString& type, const QString& storyId, const QString& data) |
| 4 | : type(type), storyId(storyId), data(data) |
| 5 | { |
| 6 | } |
| 7 | |
| 8 | const QString& RepositoryChangeModel::getType() const |
| 9 | { |
nothing calls this directly
no outgoing calls
no test coverage detected