~ubuntu-branches/ubuntu/jaunty/adacontrol/jaunty

« back to all changes in this revision

Viewing changes to src/adactl_options.ads

  • Committer: Bazaar Package Importer
  • Author(s): Ludovic Brenta
  • Date: 2006-08-24 08:44:11 UTC
  • Revision ID: james.westby@ubuntu.com-20060824084411-1r15uio1h75lqgpx
Tags: upstream-1.4r20
ImportĀ upstreamĀ versionĀ 1.4r20

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package Adactl_Options is
 
2
 
 
3
   type Action_Kinds is (Help, Process, Interactive_Process, Dependents);
 
4
 
 
5
   Action : Action_Kinds;
 
6
 
 
7
   Spec_Option      : Boolean;
 
8
   Recursive_Option : Boolean;
 
9
   Ignore_Option    : Boolean;
 
10
   Unit_Option      : Boolean;
 
11
   Exit_Option      : Boolean;
 
12
   Overwrite_Option : Boolean;
 
13
 
 
14
   procedure Analyse_Options;
 
15
   -- Analyses and sets program options
 
16
 
 
17
   function Asis_Options return Wide_String;
 
18
   -- Returns ASIS options passed by command line
 
19
 
 
20
   function Command_Line_Commands return Wide_String;
 
21
   -- Return the commands stated as options on the command line
 
22
 
 
23
   function Ada_Units_List return Wide_String;
 
24
   -- Returns list of Ada units to process
 
25
 
 
26
   function Initialize_String return Wide_String;
 
27
   -- Returns a initialize string
 
28
 
 
29
   Options_Error : exception;
 
30
 
 
31
end Adactl_Options;