File : adagio_resources.adb



--  AWSRes v1.0 - Genarated on July 13 2004 at 18:44:20

with adagio_resources.config_template_xml;

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

package body adagio_resources is

   Initialized : Boolean := False;

   procedure Init is
      use AWS.Resources.Embedded;
   begin
      if not Initialized then
         Initialized := True;
         Register
            ("config_template.xml",
             adagio_resources.config_template_xml.Content'Access,
             GNAT.Calendar.Time_Of (2004, 07, 13, 16, 44, 20, 0.0));
      end if;
   end Init;

begin
   Init;
end adagio_resources;