16 lines
319 B
C++
16 lines
319 B
C++
|
|
#include "analysisoperationrecorder.h"
|
||
|
|
|
||
|
|
namespace AnalysisOperationRecorder {
|
||
|
|
void addAnalysisOperation(const AnalysisOperation ao)
|
||
|
|
{
|
||
|
|
_ananlysisOperationVtr.push_back(ao);
|
||
|
|
}
|
||
|
|
|
||
|
|
void removeTheLastAnalysisOperation()
|
||
|
|
{
|
||
|
|
if (!_ananlysisOperationVtr.isEmpty()) {
|
||
|
|
_ananlysisOperationVtr.removeLast();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|