2 * Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
9 #include <SupportDefs.h>
12 class PagerTextSource
{
14 virtual ~PagerTextSource();
16 virtual size_t BytesAvailable() const = 0;
17 virtual size_t Read(size_t offset
, void* buffer
,
18 size_t size
) const = 0;
22 void pager(const PagerTextSource
& textSource
);