icinga2/base/ringbuffer.h

24 lines
293 B
C
Raw Normal View History

2012-06-28 15:43:49 +02:00
#ifndef RINGBUFFER_H
#define RINGBUFFER_H
namespace icinga
{
class Ringbuffer
{
public:
Ringbuffer(int slots);
int GetLength(void) const;
void InsertValue(long tv, int num);
int GetValues(long span) const;
private:
vector<int> m_Slots;
int m_Offset;
};
}
#endif /* RINGBUFFER_H */