File: commands.ads

package info (click to toggle)
music123 16.3-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 172 kB
  • sloc: ada: 696; makefile: 88; sh: 4
file content (15 lines) | stat: -rw-r--r-- 284 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package Commands is

   task type Handler_Task is
     entry Start;
     entry Stop;
   end Handler_Task;

   protected Repository is
      procedure Quit;
      function Have_To_Quit return Boolean;
   private
      Quit_Pressed : Boolean := False;
   end Repository;

end Commands;