filedrop.C 343 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (C) 2016 Emweb bvba, Herent, Belgium.
  3. *
  4. * See the LICENSE file for terms of use.
  5. */
  6. #include "FileDropApplication.h"
  7. using namespace Wt;
  8. WApplication *createApplication(const WEnvironment& env)
  9. {
  10. return new FileDropApplication(env);
  11. }
  12. int main(int argc, char **argv)
  13. {
  14. return WRun(argc, argv, &createApplication);
  15. }