Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

MNAnimWnd.h

Go to the documentation of this file.
00001 //345678901234567890123456789012345678901234567890123456789012345678901234567890
00002 // MNAnimWnd.h
00003 //
00004 // Author: Richard van Balen
00005 #ifndef OglGui_MNAnimWnd_h
00006 #define OglGui_MNAnimWnd_h
00007 
00008 #ifndef OglGui_Window_h
00009 #include "OglGui/Window.h"
00010 #endif
00011 
00012 namespace OglGui {
00013 
00014 class MNAnimWnd : public Window
00015 {
00016 public:
00017     MNAnimWnd(int x, int y, int w, int h ) :
00018         Window(x,y,w,h)
00019     {
00020         Init(w,h);
00021     }
00022 
00023     MNAnimWnd(Window* parent, int w, int h) :
00024         Window(parent,w,h)
00025     {
00026         Init(w,h);
00027     }
00028 
00029     MNAnimWnd(Window* parent,int x,int y,int w,int h) :
00030         Window(parent,x,y,w,h)
00031     {
00032         Init(w,h);
00033     }
00034 
00035 private:
00036     void Init(int w, int h)
00037     {
00038         MNAnimFuncs(mOglWnd);
00039         GlueFuncs();
00040     }
00041 };
00042 
00043 } // Namespace OglGui
00044 #endif
00045 

Generated on Fri Mar 19 09:31:37 2010 for ImpalaSrc by  doxygen 1.5.1