Import HTTPD Eiffel

This commit is contained in:
Javier Velilla
2011-05-20 08:58:26 -03:00
parent 094dc09354
commit dfa30471e3
84 changed files with 3241 additions and 0 deletions

26
application.e Normal file
View File

@@ -0,0 +1,26 @@
note
description : "nino application root class"
date : "$Date$"
revision : "$Revision$"
class
APPLICATION
inherit
ARGUMENTS
create
make
feature {NONE} -- Initialization
make
-- Run application.
local
l_server : HTTP_SERVER
do
create l_server.make
l_server.setup
end
end