2025-05-09 09:28:39 +00:00
|
|
|
#include "analysisoperationrecorder.h"
|
|
|
|
|
|
|
|
|
|
namespace AnalysisOperationRecorder {
|
|
|
|
|
void addAnalysisOperation(const AnalysisOperation ao)
|
|
|
|
|
{
|
|
|
|
|
_ananlysisOperationVtr.push_back(ao);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void removeTheLastAnalysisOperation()
|
|
|
|
|
{
|
|
|
|
|
if (!_ananlysisOperationVtr.isEmpty()) {
|
|
|
|
|
_ananlysisOperationVtr.removeLast();
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-05-12 09:29:59 +00:00
|
|
|
|
|
|
|
|
QVector<AnalysisOperation> _ananlysisOperationVtr;
|
|
|
|
|
|
2025-05-09 09:28:39 +00:00
|
|
|
}
|