mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
- fix build with gcc 4.1.0
svn path=/trunk/; revision=25069
This commit is contained in:
parent
94d2fce55a
commit
4ecce0d21b
2 changed files with 5 additions and 0 deletions
|
@ -25,6 +25,9 @@
|
|||
<directory name="route">
|
||||
<xi:include href="route/route.rbuild" />
|
||||
</directory>
|
||||
<directory name="roshttpd">
|
||||
<xi:include href="roshttpd/roshttpd.rbuild" />
|
||||
</directory>
|
||||
<directory name="telnet">
|
||||
<xi:include href="telnet/telnet.rbuild" />
|
||||
</directory>
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
template <class Item>
|
||||
class CIterator {
|
||||
public:
|
||||
virtual ~CIterator()
|
||||
{}
|
||||
virtual VOID First() = 0;
|
||||
virtual VOID Next() = 0;
|
||||
virtual BOOL IsDone() const = 0;
|
||||
|
|
Loading…
Reference in a new issue