/demo/src/view-db_test.ads
http://github.com/ThomasLocke/yolk · Ada · 40 lines · 14 code · 7 blank · 19 comment · 0 complexity · 6449a478f2d64f32a195994935bb5e2d MD5 · raw file
- -------------------------------------------------------------------------------
- -- --
- -- Copyright (C) 2010-, Thomas Løcke --
- -- --
- -- This is free software; you can redistribute it and/or modify it --
- -- under terms of the GNU General Public License as published by the --
- -- Free Software Foundation; either version 3, or (at your option) any --
- -- later version. This library is distributed in the hope that it will be --
- -- useful, but WITHOUT ANY WARRANTY; without even the implied warranty of --
- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. --
- -- You should have received a copy of the GNU General Public License and --
- -- a copy of the GCC Runtime Library Exception along with this program; --
- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
- -- <http://www.gnu.org/licenses/>. --
- -- --
- -------------------------------------------------------------------------------
- -- The dbtest resource.
- with AWS.Response;
- with AWS.Status;
- package View.DB_Test is
- type Str_Ptr is access all String;
- Names : constant array (Integer range 1 .. 5) of Str_Ptr :=
- (1 => new String'("Billy"),
- 2 => new String'("David"),
- 3 => new String'("Bobby"),
- 4 => new String'("Tommy"),
- 5 => new String'("Bruce"));
- -- Test data to add to the database.
- function Generate
- (Request : in AWS.Status.Data)
- return AWS.Response.Data;
- -- Generate the content for the /database resource.
- end View.DB_Test;