代码搜索:Iterator
找到约 10,000 项符合「Iterator」的源代码
代码结果 10,000
www.eeworm.com/read/162314/10315555
h iterator.h
//Iterator.h
#ifndef _ITERATOR_H_
#define _ITERATOR_H_
class Aggregate;
typedef int Object;
class Iterator
{
public:
virtual ~Iterator();
virtual void First() = 0;
virtual void
www.eeworm.com/read/162314/10315559
dsw iterator.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/162314/10315563
opt iterator.opt
www.eeworm.com/read/162272/10320712
h iterator.h
/*
*
* Copyright (c) 1994
* Hewlett-Packard Company
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without
www.eeworm.com/read/160819/10495370
h iterator.h
#ifndef _ITERATOR_H
#define _ITERATOR_H
template
class IteratorRef
{
public:
virtual ~IteratorRef() {}
virtual void Init() = 0;
virtual bool HasMore() = 0;
vi
www.eeworm.com/read/160819/10496082
cpp iterator.cpp
#include "iterator.h"
template
Iterator::Iterator(IteratorRef* it)
: myIt(it)
{
}
template
Iterator::~Iterator()
{
delete myIt;
}
t
www.eeworm.com/read/352317/10564021
hpp iterator.hpp
/** \file
* Defines interfaces for iterators as used by the KDTree class.
*
* \author Martin F. Krafft
*/
#ifndef INCLUDE_KDTREE_ITERATOR_HPP
#define INCLUDE_KDTREE_
www.eeworm.com/read/352057/10584596