mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-24 12:11:18 +00:00
* Examples/WebBookStore1/Application.h, * Examples/WebBookStore1/Application.m, * Examples/WebBookStore1/DirectAction.h, * Examples/WebBookStore1/DirectAction.m, * Examples/WebBookStore1/GNUmakefile, * Examples/WebBookStore1/Main.h, * Examples/WebBookStore1/Main.m, * Examples/WebBookStore1/Session.h, * Examples/WebBookStore1/Session.m, * Examples/WebBookStore1/WebBookStore1_main.m, * Examples/WebBookStore1/BookStore.eomodeld/Author.plist, * Examples/WebBookStore1/BookStore.eomodeld/Book.plist, * Examples/WebBookStore1/BookStore.eomodeld/Customer.plist, * Examples/WebBookStore1/BookStore.eomodeld/Order.plist, * Examples/WebBookStore1/BookStore.eomodeld/OrderPos.plist, * Examples/WebBookStore1/BookStore.eomodeld/index.eomodeld, * Examples/WebBookStore1/Main.gswc/Main.gswd, * Examples/WebBookStore1/Main.gswc/Main.gswi, * Examples/WebBookStore1/Main.gswc/Main.html, * Examples/WebBookStore1/WebServerResources/Insert.png, * Examples/WebBookStore1/WebServerResources/Save.png, * Examples/WebBookStore1/WebServerResources/Delete.png, * Examples/WebBookStore1/WebServerResources/CreateTables.png, * Examples/WebBookStore1/WebServerResources/DropTables.png: New files. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@20316 72102866-910b-0410-8b05-ffd578937521
14 lines
600 B
Objective-C
14 lines
600 B
Objective-C
#include <GSWeb/GSWeb.h>
|
|
|
|
int main(int argc, const char *argv[])
|
|
{
|
|
/* GSWApplicationMain passes the arguments to process any
|
|
default settings and instantiates the class named as the
|
|
first parameter to make it the application object.
|
|
This should be the name of the principal class of the application.
|
|
The application object should implement it initialization in its
|
|
-init method. It will be sent -run to start the default run loop.
|
|
The run loop will listen for requests from the current web adaptor. */
|
|
|
|
return GSWApplicationMain(@"Application", argc, argv);
|
|
}
|