X-Git-Url: https://git.decadent.org.uk/gitweb/?p=videolink.git;a=blobdiff_plain;f=childiterator.hpp;fp=childiterator.hpp;h=0000000000000000000000000000000000000000;hp=edc937c0590ca9a87a74eecc3bc19b6cb3489df1;hb=0acb5f1329d294faf42e247f8c2daf68d82150f6;hpb=1b6026c7baa122b99011f760857b80b7f253dfbb diff --git a/childiterator.hpp b/childiterator.hpp deleted file mode 100644 index edc937c..0000000 --- a/childiterator.hpp +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright 2005 Ben Hutchings . -// See the file "COPYING" for licence details. - -#ifndef INC_CHILDITERATOR_HPP -#define INC_CHILDITERATOR_HPP - -#include - -#include -#include - -class ChildIterator - : public std::iterator, - void, void, void> -{ -public: - ChildIterator(); - explicit ChildIterator(nsIDOMNode * node); - ~ChildIterator(); - - already_AddRefed operator*() const; - ChildIterator & operator++(); - bool operator==(const ChildIterator &) const; - bool operator!=(const ChildIterator & other) const - { - return !(*this == other); - } - -private: - nsIDOMNode * node_; -}; - -#endif // !INC_CHILDITERATOR_HPP