summaryrefslogtreecommitdiffhomepage
path: root/nGenEx/VideoFactory.h
diff options
context:
space:
mode:
authorFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2011-12-09 20:15:42 +0000
committerFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2011-12-09 20:15:42 +0000
commitb2805409566af00bc15639494f5a186fbd2f16e6 (patch)
tree78f87818bd262e59929d77b53f068f9120f9620f /nGenEx/VideoFactory.h
parentfb436f697f21dfdf2d8fc8293bab82b998a353d1 (diff)
downloadstarshatter-b2805409566af00bc15639494f5a186fbd2f16e6.zip
starshatter-b2805409566af00bc15639494f5a186fbd2f16e6.tar.gz
starshatter-b2805409566af00bc15639494f5a186fbd2f16e6.tar.bz2
More indenting changes
Diffstat (limited to 'nGenEx/VideoFactory.h')
-rw-r--r--nGenEx/VideoFactory.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/nGenEx/VideoFactory.h b/nGenEx/VideoFactory.h
index f30db1b..360dea0 100644
--- a/nGenEx/VideoFactory.h
+++ b/nGenEx/VideoFactory.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: VideoFactory.h
- AUTHOR: John DiCamillo
+ SUBSYSTEM: nGenEx.lib
+ FILE: VideoFactory.h
+ AUTHOR: John DiCamillo
- OVERVIEW
- ========
- Video Factory class
+ OVERVIEW
+ ========
+ Video Factory class
*/
#ifndef VideoFactory_h
@@ -24,18 +24,18 @@
class VideoFactory
{
public:
- VideoFactory(HWND h);
- virtual ~VideoFactory();
+ VideoFactory(HWND h);
+ virtual ~VideoFactory();
- virtual Video* CreateVideo(VideoSettings* vs);
- virtual void DestroyVideo(Video* video);
- virtual SoundCard* CreateSoundCard();
+ virtual Video* CreateVideo(VideoSettings* vs);
+ virtual void DestroyVideo(Video* video);
+ virtual SoundCard* CreateSoundCard();
private:
- HWND hwnd;
-
- Video* video;
- SoundCard* audio;
+ HWND hwnd;
+
+ Video* video;
+ SoundCard* audio;
};
#endif VideoFactory_h