diff options
author | pixel <pixel> | 2003-12-04 03:39:28 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-12-04 03:39:28 +0000 |
commit | d843ef0f88d02f685db90b957545b237218a0bcb (patch) | |
tree | df97dd2270ae5b73d092d1a871c9f6400d843836 /includes/isobuilder.h | |
parent | 8b5e08b64cd35602b9010590d1c591ff50674bd4 (diff) |
Added DirTree browsing
Diffstat (limited to 'includes/isobuilder.h')
-rw-r--r-- | includes/isobuilder.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/includes/isobuilder.h b/includes/isobuilder.h index e0a8849..572c332 100644 --- a/includes/isobuilder.h +++ b/includes/isobuilder.h @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: isobuilder.h,v 1.3 2003-12-04 03:35:31 pixel Exp $ */ +/* $Id: isobuilder.h,v 1.4 2003-12-04 03:39:28 pixel Exp $ */ #ifndef __ISOBUILDER_H__
#define __ISOBUILDER_H__
@@ -57,6 +57,10 @@ class isobuilder : public Base { bool have_xa, xa_dir, xa_audio, xa_str, xa_xa, xa_form1;
int buildentry(Byte * buffer, int spaceleft, bool put_xa = true);
int mode;
+ DirTree * Father();
+ DirTree * Child();
+ DirTree * Brother();
+ DirTree * Find(const String &);
private:
DirTree * father, * child, * brother;
bool dir;
|