Changeset 8
- Timestamp:
- 01/06/07 15:26:26 (2 years ago)
- Files:
-
- trunk/doost/any.d (modified) (2 diffs)
- trunk/doost/common.d (modified) (1 diff)
- trunk/doost/program_options/all.d (added)
- trunk/doost/program_options_all.d (deleted)
- trunk/examples/any/any.cbp (modified) (1 diff)
- trunk/examples/program_options/custom_syntax.d (modified) (1 diff)
- trunk/examples/program_options/first.d (modified) (1 diff)
- trunk/examples/program_options/multiple_sources.d (modified) (1 diff)
- trunk/examples/program_options/option_groups.d (modified) (1 diff)
- trunk/examples/program_options/optionsdescription.d (modified) (1 diff)
- trunk/examples/program_options/program_options.cbp (modified) (2 diffs)
- trunk/examples/program_options/real.d (modified) (1 diff)
- trunk/examples/program_options/regex.d (modified) (1 diff)
- trunk/examples/program_options/response_file.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/doost/any.d
r5 r8 34 34 } 35 35 36 this() {37 content=null;38 }39 40 36 // ValueType can not be of Any type by D language design, so we should care 41 37 // only about other cases... … … 54 50 bool empty() { 55 51 return (content is null); 52 } 53 54 void clear() { 55 content=null; 56 56 } 57 57 trunk/doost/common.d
r5 r8 9 9 module doost.common; 10 10 11 public import std.stdio; 12 11 13 alias char[] string; trunk/examples/any/any.cbp
r5 r8 21 21 <Compiler> 22 22 <Add option="-unittest" /> 23 <Add directory=" /home/marcin/Programy/D/" />23 <Add directory="../../" /> 24 24 </Compiler> 25 25 <Unit filename="../../doost/any.d"> trunk/examples/program_options/custom_syntax.d
r5 r8 17 17 */ 18 18 19 import doost.program_options _all;19 import doost.program_options.all; 20 20 import std.stdio; 21 21 import std.string; trunk/examples/program_options/first.d
r5 r8 13 13 */ 14 14 15 import doost.program_options _all;15 import doost.program_options.all; 16 16 import std.stdio; 17 17 trunk/examples/program_options/multiple_sources.d
r5 r8 15 15 import std.stdio; 16 16 17 import doost.program_options _all;17 import doost.program_options.all; 18 18 19 19 int main(string[] args) { trunk/examples/program_options/option_groups.d
r5 r8 26 26 27 27 28 import doost.program_options _all;28 import doost.program_options.all; 29 29 import std.stdio; 30 30 trunk/examples/program_options/optionsdescription.d
r6 r8 10 10 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 11 11 12 import doost.program_options _all;12 import doost.program_options.all; 13 13 import std.stdio; 14 14 trunk/examples/program_options/program_options.cbp
r7 r8 105 105 <Option target="First" /> 106 106 </Unit> 107 <Unit filename="../../doost/program_options/all.d"> 108 <Option compilerVar="CPP" /> 109 <Option target="OptionGroups" /> 110 <Option target="OptionsDescription" /> 111 <Option target="CustomSyntax" /> 112 <Option target="MultipleSources" /> 113 <Option target="ResponseFile" /> 114 <Option target="Real" /> 115 <Option target="RegEx" /> 116 <Option target="First" /> 117 </Unit> 107 118 <Unit filename="../../doost/program_options/command_line_parser.d"> 108 119 <Option compilerVar="CPP" /> … … 218 229 </Unit> 219 230 <Unit filename="../../doost/program_options/variables_map.d"> 220 <Option compilerVar="CPP" />221 <Option target="OptionGroups" />222 <Option target="OptionsDescription" />223 <Option target="CustomSyntax" />224 <Option target="MultipleSources" />225 <Option target="ResponseFile" />226 <Option target="Real" />227 <Option target="RegEx" />228 <Option target="First" />229 </Unit>230 <Unit filename="../../doost/program_options_all.d">231 231 <Option compilerVar="CPP" /> 232 232 <Option target="OptionGroups" /> trunk/examples/program_options/real.d
r5 r8 10 10 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 11 11 12 import doost.program_options _all;12 import doost.program_options.all; 13 13 import std.stdio; 14 14 trunk/examples/program_options/regex.d
r5 r8 26 26 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 27 27 28 import doost.program_options _all;28 import doost.program_options.all; 29 29 import std.regexp; 30 30 trunk/examples/program_options/response_file.d
r5 r8 23 23 24 24 25 import doost.program_options _all;25 import doost.program_options.all; 26 26 import std.stdio; 27 27 import std.string;
