home *** CD-ROM | disk | FTP | other *** search
/ Solo Programadores 22 / SOLO_22.iso / docs / lovelace / parser.ads < prev    next >
Encoding:
Text File  |  1995-11-21  |  437 b   |  15 lines

  1.  
  2.   -- (C) 1995 David A. Wheeler.  Permission is granted to use this 
  3.   -- program for any purpose, commercial or otherwise, as long as
  4.   -- credit is given to David A. Wheeler.
  5.  
  6. with Ada.Strings.Unbounded;
  7. use  Ada.Strings.Unbounded;
  8.  
  9. package Parser is
  10.  procedure Execute(Command : in Unbounded_String; Quit : out Boolean);
  11.    -- Executes the given command.
  12.    -- Sets Quit to True if the user may run additional commands.
  13. end Parser;
  14.  
  15.