aboutsummaryrefslogtreecommitdiff
path: root/Src/Plugins/Library/ml_online/BufferCache.h
blob: fdc3b1e4dbf3afe98d72aa3019d33cc199267e1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef NULLSOFT_BUFFERCACHEH
#define NULLSOFT_BUFFERCACHEH
#include <time.h>
#include "../nu/GrowBuf.h"

class Buffer_GrowBuf : public GrowBuf
{
public:
	Buffer_GrowBuf() : expire_time(0) {}
	time_t expire_time;
};

#endif