Changeset 3958
- Timestamp:
- 10/03/08 22:23:05 (2 months ago)
- Files:
-
- trunk/lib/common/tango/core/Exception.d (modified) (2 diffs)
- trunk/tango/io/vfs/model/Vfs.d (modified) (1 diff)
- trunk/tango/util/log/Log.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/common/tango/core/Exception.d
r3389 r3958 224 224 * The basic exception thrown by the tango.io.vfs package. 225 225 */ 226 privateclass VfsException : IOException226 class VfsException : IOException 227 227 { 228 228 this( char[] msg ) … … 235 235 * The basic exception thrown by the tango.io.cluster package. 236 236 */ 237 privateclass ClusterException : IOException237 class ClusterException : IOException 238 238 { 239 239 this( char[] msg ) trunk/tango/io/vfs/model/Vfs.d
r3540 r3958 32 32 33 33 // return false to exclude something 34 publicalias bool delegate(VfsInfo) VfsFilter;35 36 37 /******************************************************************************* 38 39 *******************************************************************************/ 40 41 privatestruct VfsStats34 alias bool delegate(VfsInfo) VfsFilter; 35 36 37 /******************************************************************************* 38 39 *******************************************************************************/ 40 41 struct VfsStats 42 42 { 43 43 ulong bytes; // byte count of files trunk/tango/util/log/Log.d
r3908 r3958 1276 1276 *******************************************************************************/ 1277 1277 1278 p rivate struct LogEvent1278 package struct LogEvent 1279 1279 { 1280 1280 private char[] msg_,












