HighScoresWidget.h 490 B

1234567891011121314151617181920212223242526
  1. // This may look like C code, but it's really -*- C++ -*-
  2. /*
  3. * Copyright (C) 2011 Emweb bvba, Heverlee, Belgium
  4. *
  5. * See the LICENSE file for terms of use.
  6. */
  7. #ifndef HIGH_SCORES_WIDGET_H_
  8. #define HIGH_SCORES_WIDGET_H_
  9. #include <Wt/WContainerWidget>
  10. class Session;
  11. class HighScoresWidget: public Wt::WContainerWidget
  12. {
  13. public:
  14. HighScoresWidget(Session *session, Wt::WContainerWidget *parent = 0);
  15. void update();
  16. private:
  17. Session *session_;
  18. };
  19. #endif //HIGH_SCORES_WIDGET_H_