| 1 | #include "FormatModel.h" |
| 2 | |
| 3 | FormatModel::FormatModel(int id, const QString& name, int width, int height, const QString& fps) |
| 4 | : id(id), name(name), width(width), height(height), fps(fps) |
| 5 | { |
| 6 | } |
| 7 | |
| 8 | int FormatModel::getId() const |
| 9 | { |
nothing calls this directly
no outgoing calls
no test coverage detected