Changeset 28
- Timestamp:
- 08/29/07 10:24:54 (1 year ago)
- Files:
-
- trunk/samples/FullSkeleton/libraryA/core/Exception.d (modified) (2 diffs)
- trunk/samples/FullSkeleton/libraryB/LibraryB.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/samples/FullSkeleton/libraryA/core/Exception.d
r25 r28 19 19 /////////////////////////////////////// 20 20 21 import tango.core.Exception; 21 version (Tango) 22 import tango.core.Exception; 22 23 23 24 //////////////////////////////////////////////////////////////////////////// … … 32 33 * PathNotFoundException Class 33 34 **/ 34 class PathNotFoundException : IOException { 35 /// Default Constructor 36 this (char [] Message) { 37 super(Message); 35 version (Tango) { 36 class PathNotFoundException : IOException { 37 /// Default Constructor 38 this (char [] Message) { 39 super(Message); 40 } 41 } 42 } else { 43 class PathNotFoundException : Exception { 44 /// Default Constructor 45 this (char [] Message) { 46 super(Message); 47 } 38 48 } 39 49 } trunk/samples/FullSkeleton/libraryB/LibraryB.d
r25 r28 26 26 } 27 27 version(RendererWin) { 28 import libraryB.render.RendererWin ;28 import libraryB.render.RendererWindows; 29 29 } 30 30
