#include <Wt/WApplication>
#include "ChartsExample.h"
Go to the source code of this file.
Classes | |
class | ChartsApplication |
Functions | |
WApplication * | createApplication (const WEnvironment &env) |
int | main (int argc, char **argv) |
WApplication* createApplication | ( | const WEnvironment & | env | ) |
Definition at line 32 of file ChartsApplication.C.
00033 { 00034 WApplication *app = new ChartsApplication(env); 00035 00036 return app; 00037 }
int main | ( | int | argc, | |
char ** | argv | |||
) |
Definition at line 39 of file ChartsApplication.C.
00040 { 00041 return WRun(argc, argv, &createApplication); 00042 }