Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
FileInfo.ice
Go to the documentation of this file.
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
9 
10 #pragma once
11 
12 [["cpp:header-ext:h", "objc:header-dir:objc"]]
13 [["cpp:include:IcePatch2/Config.h"]]
14 
15 #include <Ice/BuiltinSequences.ice>
16 
17 ["objc:prefix:ICEPATCH2"]
18 module IcePatch2
19 {
20 
26 struct FileInfo
27 {
29  string path;
30 
33 
35  int size;
36 
38  bool executable;
39 };
40 
46 sequence<FileInfo> FileInfoSeq;
47 
48 
55 {
57  string path;
58 
61 
63  long size;
64 
66  bool executable;
67 };
68 
74 sequence<LargeFileInfo> LargeFileInfoSeq;
75 
76 };
77 
78 
bool executable
The executable flag.
Definition: FileInfo.ice:38
IcePatch can be used to update file hierarchies in a simple and efficient manner. ...
Definition: FileInfo.ice:18
Ice::ByteSeq checksum
The SHA-1 checksum of the file.
Definition: FileInfo.ice:32
sequence< FileInfo > FileInfoSeq
A sequence with information about many files.
Definition: FileInfo.ice:46
sequence< LargeFileInfo > LargeFileInfoSeq
A sequence with information about many files.
Definition: FileInfo.ice:74
Basic information about a single file.
Definition: FileInfo.ice:54
string path
The pathname.
Definition: FileInfo.ice:29
int size
The size of the compressed file in number of bytes.
Definition: FileInfo.ice:35
Basic information about a single file.
Definition: FileInfo.ice:26
sequence< byte > ByteSeq
A sequence of bytes.
Definition: BuiltinSequences.ice:22
string path
The pathname.
Definition: FileInfo.ice:57
Ice::ByteSeq checksum
The SHA-1 checksum of the file.
Definition: FileInfo.ice:60
long size
The size of the compressed file in number of bytes.
Definition: FileInfo.ice:63
bool executable
The executable flag.
Definition: FileInfo.ice:66