/indra/newview/llfloaterbump.h

https://bitbucket.org/lindenlab/viewer-beta/ · C++ Header · 52 lines · 18 code · 8 blank · 26 comment · 0 complexity · 791abda24a369631d3b877ed946600b0 MD5 · raw file

  1. /**
  2. * @file llfloaterbump.h
  3. * @brief Floater showing recent bumps, hits with objects, pushes, etc.
  4. * @author Cory Ondrejka, James Cook
  5. *
  6. * $LicenseInfo:firstyear=2003&license=viewerlgpl$
  7. * Second Life Viewer Source Code
  8. * Copyright (C) 2010, Linden Research, Inc.
  9. *
  10. * This library is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Lesser General Public
  12. * License as published by the Free Software Foundation;
  13. * version 2.1 of the License only.
  14. *
  15. * This library is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public
  21. * License along with this library; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23. *
  24. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  25. * $/LicenseInfo$
  26. */
  27. #ifndef LL_LLFLOATERBUMP_H
  28. #define LL_LLFLOATERBUMP_H
  29. #include "llfloater.h"
  30. class LLMeanCollisionData;
  31. class LLScrollListCtrl;
  32. class LLFloaterBump
  33. : public LLFloater
  34. {
  35. friend class LLFloaterReg;
  36. protected:
  37. void add(LLScrollListCtrl* list, LLMeanCollisionData *mcd);
  38. public:
  39. /*virtual*/ void onOpen(const LLSD& key);
  40. private:
  41. LLFloaterBump(const LLSD& key);
  42. virtual ~LLFloaterBump();
  43. };
  44. #endif