File: res.adb

package info (click to toggle)
libaws 2.5~124785-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 7,488 kB
  • ctags: 419
  • sloc: ada: 61,158; makefile: 1,262; ansic: 219; xml: 196; java: 112; python: 66; sed: 43; sh: 34
file content (22 lines) | stat: -rw-r--r-- 342 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

--  AWSRes v1.2 - Genarated on June 01 2008 at 14:21:22


with AWS.Resources.Embedded;
with GNAT.Calendar;

package body res is

   Initialized : Boolean := False;

   procedure Init is
      use AWS.Resources.Embedded;
   begin
      if not Initialized then
         Initialized := True;
      end if;
   end Init;

begin
   Init;
end res;