Skip to content

Commit

Permalink
Fix indentation in Window.cpp.
Browse files Browse the repository at this point in the history
  • Loading branch information
BartVandewoestyne committed Feb 13, 2024
1 parent bd78887 commit 0078d49
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions Structural_Patterns/Bridge/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,37 +12,37 @@ void Window::DrawContents()
// TODO
}

void Window::Open() {
void Window::Open() {
// TODO
}
}

void Window::Close() {
void Window::Close() {
// TODO
}
}

void Window::Iconify() {
void Window::Iconify() {
// TODO
}
}

void Window::Deiconify() {
void Window::Deiconify() {
// TODO
}
}

void Window::SetOrigin(const Point& at) {
// TODO
}
}

void Window::SetExtent(const Point& extent) {
// TODO
}
}

void Window::Raise() {
// TODO
}
}

void Window::Lower() {
// TODO
}
}

void Window::DrawLine(const Point&, const Point&) {
// TODO
Expand Down

0 comments on commit 0078d49

Please sign in to comment.