User.C 312 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (C) 2011 Emweb bvba, Kessel-Lo, Belgium.
  3. *
  4. * See the LICENSE file for terms of use.
  5. */
  6. #include "User.h"
  7. #include <Wt/Auth/Dbo/AuthInfo>
  8. #include <Wt/Dbo/Impl>
  9. DBO_INSTANTIATE_TEMPLATES(User);
  10. using namespace Wt;
  11. using namespace Wt::Dbo;
  12. User::User()
  13. : gamesPlayed(0),
  14. score(0)
  15. { }