icinga2/base/ringbuffer.h

24 lines
305 B
C
Raw Normal View History

2012-06-28 15:43:49 +02:00
#ifndef RINGBUFFER_H
#define RINGBUFFER_H
namespace icinga
{
2012-07-01 13:21:49 +02:00
class I2_BASE_API Ringbuffer
2012-06-28 15:43:49 +02:00
{
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 */