1b5aeb312e
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13203 a95241bf-73f2-0310-859d-f6bbb57e9c96
33 lines
556 B
C++
33 lines
556 B
C++
/*
|
|
* Copyright 2001-2005, Haiku.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Adrian Oanca <adioanca@cotty.iren.ro>
|
|
*/
|
|
#ifndef _SUB_WINDOW_LIST_H_
|
|
#define _SUB_WINDOW_LIST_H_
|
|
|
|
|
|
#include <List.h>
|
|
#include <Window.h>
|
|
|
|
|
|
class WinBorder;
|
|
|
|
class SubWindowList : public BList {
|
|
public:
|
|
SubWindowList(void);
|
|
virtual ~SubWindowList(void);
|
|
|
|
void AddWinBorder(WinBorder *border);
|
|
|
|
// special
|
|
void AddSubWindowList(SubWindowList *list);
|
|
|
|
// debugging methods
|
|
void PrintToStream() const;
|
|
};
|
|
|
|
#endif /* _SUB_WINDOW_LIST_H_ */
|