moved two rather important functions up in the header

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12046 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2005-03-26 22:03:19 +00:00
parent f1aa29756b
commit 7814396f35

View File

@ -112,6 +112,10 @@ class DisplayDriver {
DisplayDriver();
virtual ~DisplayDriver();
// when implementing, be sure to call the inherited version
virtual bool Initialize();
virtual void Shutdown();
// Graphics calls implemented in DisplayDriver
virtual void CopyBits( const BRect &src,
const BRect &dest,
@ -296,8 +300,6 @@ class DisplayDriver {
// Virtual methods which need to be implemented by each subclass
virtual bool Initialize();
virtual void Shutdown();
// These two will rarely be implemented by subclasses,
// but it still needs to be possible