1 | #pragma once |
---|---|
2 | |
3 | #include <QFrame> |
4 | |
5 | class FileDiffView; |
6 | |
7 | class SourceCodeReview : public QFrame |
8 | { |
9 | Q_OBJECT |
10 | |
11 | public: |
12 | explicit SourceCodeReview(const QString &filePath, const QString &sourceCode, int commentLine, |
13 | QWidget *parent = nullptr); |
14 | |
15 | private: |
16 | FileDiffView *mDiffView = nullptr; |
17 | }; |
18 |