#include <Wt/WApplication>
#include "ChartsExample.h"
#include <Wt/WContainerWidget>
#include <iostream>
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 33 of file ChartsApplication.C.
00034 { 00035 WApplication *app = new ChartsApplication(env); 00036 00037 return app; 00038 }
int main | ( | int | argc, | |
char ** | argv | |||
) |
Definition at line 40 of file ChartsApplication.C.
00041 { 00042 return WRun(argc, argv, &createApplication); 00043 }