00001 /* 00002 Copyright 1996-2001 00003 Simon Whiteside 00004 00005 * $Id: skExecutableIterator_h-source.html,v 1.4 2001/07/05 09:56:08 sdw Exp $ 00006 */ 00007 00008 #ifndef skEXECUTABLEITERATOR_H 00009 #define skEXECUTABLEITERATOR_H 00010 00011 00012 #include "skGeneral.h" 00013 00014 class skRValue; 00015 00019 class skExecutableIterator { 00020 public: 00021 virtual ~skExecutableIterator(); 00022 virtual bool next(skRValue&)=0; 00023 }; 00024 00025 #endif 00026