blob: af896ee83916604676ce806bcf848ef12ebadf84 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Radoslav Gerganov
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Radoslav Gerganov - initial API and implementation
*******************************************************************************/
package org.eclipse.tm.rapi;
/**
* This class is used to enumerate the set of connected WinCE-based
* remote devices which are represented by <code>IRapiDevice</code>
* objects.
*
* @noextend This class is not intended to be subclassed by clients.
* @author Radoslav Gerganov
*/
public abstract class IRapiEnumDevices extends IUnknown {
public IRapiEnumDevices(int addr) {
super(addr);
}
/**
* Returns an instance of <code>IRapiDevice</code>.
* Use {@link IRapiDevice#release()} to release this instance when it is
* no longer needed.
* @return an instance of <code>IRapiDevice</code>
* @throws RapiException if an error occurs.
*/
public abstract IRapiDevice next() throws RapiException;
}