/// <remarks> /// Creates a new entry. /// <param> name="archive" the entries archive /// </param><param> name="name" the name of the entry /// </param><param> name="access" the permissions in unix format /// </param><param> name="date" the date (in seconds since 1970) /// </param><param> name="user" the user that owns the entry /// </param><param> name="group" the group that owns the entry /// </param><param> name="symlink" the symlink, or string() /// </param></remarks> <short> Creates a new entry.</short> public KArchiveEntry(KArchive archive, string name, int access, int date, string user, string group, string symlink) : this((Type) null) { CreateProxy(); interceptor.Invoke("KArchiveEntry#$$$$$$", "KArchiveEntry(KArchive*, const QString&, int, int, const QString&, const QString&, const QString&)", typeof(void), typeof(KArchive), archive, typeof(string), name, typeof(int), access, typeof(int), date, typeof(string), user, typeof(string), group, typeof(string), symlink); }
/// <remarks> /// Creates a new file entry. Do not call this, KArchive takes care of it. /// <param> name="archive" the entries archive /// </param><param> name="name" the name of the entry /// </param><param> name="access" the permissions in unix format /// </param><param> name="date" the date (in seconds since 1970) /// </param><param> name="user" the user that owns the entry /// </param><param> name="group" the group that owns the entry /// </param><param> name="symlink" the symlink, or string() /// </param><param> name="pos" the position of the file in the directory /// </param><param> name="size" the size of the file /// </param></remarks> <short> Creates a new file entry.</short> public KArchiveFile(KArchive archive, string name, int access, int date, string user, string group, string symlink, long pos, long size) : this((Type) null) { CreateProxy(); interceptor.Invoke("KArchiveFile#$$$$$$$$", "KArchiveFile(KArchive*, const QString&, int, int, const QString&, const QString&, const QString&, qint64, qint64)", typeof(void), typeof(KArchive), archive, typeof(string), name, typeof(int), access, typeof(int), date, typeof(string), user, typeof(string), group, typeof(string), symlink, typeof(long), pos, typeof(long), size); }