icinga2/lib/livestatus/historytable.hpp

25 lines
414 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef HISTORYTABLE_H
#define HISTORYTABLE_H
2014-05-25 16:23:35 +02:00
#include "livestatus/table.hpp"
#include "base/dictionary.hpp"
namespace icinga
{
/**
* @ingroup livestatus
*/
2017-12-31 07:22:16 +01:00
class HistoryTable : public Table
{
public:
2018-01-04 06:11:04 +01:00
virtual void UpdateLogEntries(const Dictionary::Ptr& bag, int line_count, int lineno, const AddRowFunction& addRowFn) = 0;
};
}
#endif /* HISTORYTABLE_H */