⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Wt
All Projects
Wt
Overview
Activity
Roadmap
Issues
Wiki
Forums
Download (333 Bytes)
Bug #4085
ยป main.cpp
Helmar Spangenberg
, 05/12/2015 08:56 AM
#include
<iostream>
#include
<Wt/WApplication>
#include
<Wt/WEnvironment>
using
namespace
std
;
using
namespace
Wt
;
WApplication
*
createApplication
(
const
WEnvironment
&
env
)
{
cout
<<
env
.
sslInfo
()
<<
endl
;
return
new
WApplication
(
env
);
}
int
main
(
int
argc
,
char
**
argv
)
{
return
WRun
(
argc
,
argv
,
createApplication
);
}
(1-1/1)
Loading...