LeviLamina
Loading...
Searching...
No Matches
ImagesList.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cohtml {
6
7struct ImagesList {
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 virtual char const* Next() = 0;
12
13 virtual void ResetIterator() = 0;
14
15 virtual void Release() = 0;
16
17 virtual ~ImagesList() = default;
18 // NOLINTEND
19
20public:
21 // virtual function thunks
22 // NOLINTBEGIN
23
24 // NOLINTEND
25};
26
27} // namespace cohtml
Definition ImagesList.h:7