diff options
author | Pixel <pixel@nobis-crew.org> | 2009-06-09 18:42:24 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-06-09 18:42:24 -0700 |
commit | 07c79ea1a1b015c8c8f5ea4bb4b8b5c2aaf6f4b9 (patch) | |
tree | be8dcacf3c17c7536b0f923c42135dd82ce6d11d /includes | |
parent | 2f6b22ede60a89cced23d499cd77413b9301a16d (diff) |
Adding dvdmode to the dirtree object.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/isobuilder.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/isobuilder.h b/includes/isobuilder.h index 16a3a4d..88ab91a 100644 --- a/includes/isobuilder.h +++ b/includes/isobuilder.h @@ -63,12 +63,14 @@ class isobuilder : public Base { DirTree * Child(); DirTree * Brother(); DirTree * Find(const String &); + void setdvdmode(); private: int buildpath_r(int * n, Byte * data, int size, int current_level, int level_to_dump, bool bigendian) throw (GeneralException); int maxlevel(int current_level = 1); DirTree * father, * child, * brother; bool dir; int node; + bool dvdmode; }; isobuilder(Handle * w, int mode = MODE2_FORM1); ~isobuilder(); |