blob: f1178573abc447c1f475eb469ab44333435a215f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef HISTORYTABLE_H
#define HISTORYTABLE_H
#include "livestatus/table.hpp"
#include "base/dictionary.hpp"
namespace icinga
{
/**
* @ingroup livestatus
*/
class HistoryTable : public Table
{
public:
virtual void UpdateLogEntries(const Dictionary::Ptr& bag, int line_count, int lineno, const AddRowFunction& addRowFn) = 0;
};
}
#endif /* HISTORYTABLE_H */
|