#include <Window.h>
Public Member Functions | |
Window () | |
void | SetContents (VisualComponent *contents_) |
void | Draw () const |
void | Resize () |
Private Attributes | |
std::vector< VisualComponent * > | m_contents |
Definition at line 9 of file Window.h.
Window::Window | ( | ) |
Definition at line 5 of file Window.cpp.
void Window::Draw | ( | ) | const |
Definition at line 14 of file Window.cpp.
References VisualComponent::Draw(), and m_contents.
Referenced by main().
void Window::Resize | ( | ) |
Definition at line 25 of file Window.cpp.
References m_contents, and VisualComponent::Resize().
Referenced by main().
void Window::SetContents | ( | VisualComponent * | contents_ | ) |
Definition at line 9 of file Window.cpp.
References m_contents.
Referenced by main().
std::vector< VisualComponent* > Window::m_contents [private] |