From 71e94ee161447b84c0eaabf6567f8fa62262cd3e Mon Sep 17 00:00:00 2001 From: Mirrorbot Date: Sat, 27 Dec 2025 17:53:06 -0600 Subject: Inital commit --- doc/html/_i_file_list_8h_source.html | 177 +++++++++++++++++++++++++++++++++++ 1 file changed, 177 insertions(+) create mode 100644 doc/html/_i_file_list_8h_source.html (limited to 'doc/html/_i_file_list_8h_source.html') diff --git a/doc/html/_i_file_list_8h_source.html b/doc/html/_i_file_list_8h_source.html new file mode 100644 index 0000000..00d49ca --- /dev/null +++ b/doc/html/_i_file_list_8h_source.html @@ -0,0 +1,177 @@ + + + + +Irrlicht 3D Engine: IFileList.h Source File + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+
Irrlicht 3D Engine + +
+ +
+ + + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+
+
+
IFileList.h
+
+
+Go to the documentation of this file.
00001 // Copyright (C) 2002-2012 Nikolaus Gebhardt
+00002 // This file is part of the "Irrlicht Engine".
+00003 // For conditions of distribution and use, see copyright notice in irrlicht.h
+00004 
+00005 #ifndef __I_FILE_LIST_H_INCLUDED__
+00006 #define __I_FILE_LIST_H_INCLUDED__
+00007 
+00008 #include "IReferenceCounted.h"
+00009 #include "path.h"
+00010 
+00011 namespace irr
+00012 {
+00013 namespace io
+00014 {
+00015 
+00017 
+00019 class IFileList : public virtual IReferenceCounted
+00020 {
+00021 public:
+00023 
+00024     virtual u32 getFileCount() const = 0;
+00025 
+00027 
+00031     virtual const io::path& getFileName(u32 index) const = 0;
+00032 
+00034 
+00037     virtual const io::path& getFullFileName(u32 index) const = 0;
+00038 
+00040 
+00043     virtual u32 getFileSize(u32 index) const = 0;
+00044 
+00046 
+00049     virtual u32 getFileOffset(u32 index) const = 0;
+00050 
+00052 
+00058     virtual u32 getID(u32 index) const = 0;
+00059 
+00061 
+00064     virtual bool isDirectory(u32 index) const = 0;
+00065 
+00067 
+00072     virtual s32 findFile(const io::path& filename, bool isFolder=false) const = 0;
+00073 
+00075     virtual const io::path& getPath() const = 0;
+00076 
+00078 
+00083     virtual u32 addItem(const io::path& fullPath, u32 offset, u32 size, bool isDirectory, u32 id=0) = 0;
+00084 
+00086     virtual void sort() = 0;
+00087 };
+00088 
+00089 } // end namespace irr
+00090 } // end namespace io
+00091 
+00092 
+00093 #endif
+00094 
+
+
+ + + + + -- cgit v1.2.3-70-g09d2