Adds support to ctl:auditLogParts variation

This commit is contained in:
Felipe Zimmerle
2015-09-01 15:17:53 -03:00
parent e89e395a32
commit fa4f72d90d
12 changed files with 221 additions and 20 deletions

View File

@@ -45,17 +45,23 @@ class AuditLogWriterSerial : public AuditLogWriter {
void refCountDecreaseAndCheck() override {
/*
m_refereceCount--;
if (m_refereceCount == 0) {
delete this;
}
*/
delete this;
/*
/}
*/
}
bool init() override;;
bool write(Assay *assay, int parts) override;
private:
std::ofstream log;
std::ofstream m_log;
void generateBoundary(std::string *boundary);
};