DragExample.h 402 B

123456789101112131415161718192021
  1. // This may look like C code, but it's really -*- C++ -*-
  2. /*
  3. * Copyright (C) 2008 Emweb bvba, Kessel-Lo, Belgium.
  4. *
  5. * See the LICENSE file for terms of use.
  6. */
  7. #ifndef DRAGEXAMPLE_H_
  8. #define DRAGEXAMPLE_H_
  9. #include <Wt/WContainerWidget>
  10. /// Class demonstrating drag and drop in Wt
  11. class DragExample: public Wt::WContainerWidget
  12. {
  13. public:
  14. DragExample(Wt::WContainerWidget *parent);
  15. };
  16. #endif