CategoriesPanel.h 589 B

123456789101112131415161718192021222324252627
  1. #ifndef HEADER_CategoriesPanel
  2. #define HEADER_CategoriesPanel
  3. /*
  4. htop - CategoriesPanel.h
  5. (C) 2004-2011 Hisham H. Muhammad
  6. Released under the GNU GPLv2+, see the COPYING file
  7. in the source distribution for its full text.
  8. */
  9. #include "Header.h"
  10. #include "Machine.h"
  11. #include "Panel.h"
  12. #include "ScreenManager.h"
  13. typedef struct CategoriesPanel_ {
  14. Panel super;
  15. ScreenManager* scr;
  16. Machine* host;
  17. Header* header;
  18. } CategoriesPanel;
  19. extern const PanelClass CategoriesPanel_class;
  20. CategoriesPanel* CategoriesPanel_new(ScreenManager* scr, Header* header, Machine* host);
  21. #endif