00001 /* 00002 Copyright 1996-2001 00003 Simon Whiteside 00004 00005 * $Id: skExecutableIterator.h,v 1.3 2001/11/16 23:03:24 sdw Exp $ 00006 */ 00007 00008 #ifndef skEXECUTABLEITERATOR_H 00009 #define skEXECUTABLEITERATOR_H 00010 00011 00012 #include "skGeneral.h" 00013 00014 class CLASSEXPORT skRValue; 00015 00019 class CLASSEXPORT skExecutableIterator { 00020 public: 00022 virtual ~skExecutableIterator(); 00027 virtual bool next(skRValue& value)=0; 00028 }; 00029 00030 #endif 00031