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