mirror of https://github.com/Icinga/icinga2.git
25 lines
414 B
C++
25 lines
414 B
C++
/* 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 */
|