From b2805409566af00bc15639494f5a186fbd2f16e6 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Fri, 9 Dec 2011 20:15:42 +0000 Subject: More indenting changes --- nGenEx/View.h | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'nGenEx/View.h') diff --git a/nGenEx/View.h b/nGenEx/View.h index fd1108c..142eae5 100644 --- a/nGenEx/View.h +++ b/nGenEx/View.h @@ -1,15 +1,15 @@ /* Project nGenEx - Destroyer Studios LLC - Copyright © 1997-2004. All Rights Reserved. + Destroyer Studios LLC + Copyright © 1997-2004. All Rights Reserved. - SUBSYSTEM: nGenEx.lib - FILE: View.h - AUTHOR: John DiCamillo + SUBSYSTEM: nGenEx.lib + FILE: View.h + AUTHOR: John DiCamillo - OVERVIEW - ======== - Abstract View class + OVERVIEW + ======== + Abstract View class */ #ifndef View_h @@ -25,27 +25,27 @@ class Window; class View { - friend class Window; + friend class Window; public: - static const char* TYPENAME() { return "View"; } + static const char* TYPENAME() { return "View"; } - View(Window* c) : window(c) { } - virtual ~View() { } - - int operator == (const View& that) const { return this == &that; } + View(Window* c) : window(c) { } + virtual ~View() { } - // Operations: - virtual void Refresh() { } - virtual void OnWindowMove() { } - virtual void OnShow() { } - virtual void OnHide() { } + int operator == (const View& that) const { return this == &that; } - virtual void SetWindow(Window* w) { window = w; OnWindowMove(); } - virtual Window* GetWindow() { return window; } + // Operations: + virtual void Refresh() { } + virtual void OnWindowMove() { } + virtual void OnShow() { } + virtual void OnHide() { } + + virtual void SetWindow(Window* w) { window = w; OnWindowMove(); } + virtual Window* GetWindow() { return window; } protected: - Window* window; + Window* window; }; #endif View_h -- cgit v1.1