aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/source/Irrlicht/IImagePresenter.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 18:54:10 +1000
committerDavid Walter Seikel2013-01-13 18:54:10 +1000
commit959831f4ef5a3e797f576c3de08cd65032c997ad (patch)
treee7351908be5995f0b325b2ebeaa02d5a34b82583 /libraries/irrlicht-1.8/source/Irrlicht/IImagePresenter.h
parentAdd info about changes to Irrlicht. (diff)
downloadSledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.zip
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.gz
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.bz2
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.xz
Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard.
Diffstat (limited to 'libraries/irrlicht-1.8/source/Irrlicht/IImagePresenter.h')
-rw-r--r--libraries/irrlicht-1.8/source/Irrlicht/IImagePresenter.h72
1 files changed, 36 insertions, 36 deletions
diff --git a/libraries/irrlicht-1.8/source/Irrlicht/IImagePresenter.h b/libraries/irrlicht-1.8/source/Irrlicht/IImagePresenter.h
index 4f083f0..66eebdb 100644
--- a/libraries/irrlicht-1.8/source/Irrlicht/IImagePresenter.h
+++ b/libraries/irrlicht-1.8/source/Irrlicht/IImagePresenter.h
@@ -1,36 +1,36 @@
1// Copyright (C) 2002-2012 Nikolaus Gebhardt 1// Copyright (C) 2002-2012 Nikolaus Gebhardt
2// This file is part of the "Irrlicht Engine". 2// This file is part of the "Irrlicht Engine".
3// For conditions of distribution and use, see copyright notice in irrlicht.h 3// For conditions of distribution and use, see copyright notice in irrlicht.h
4 4
5#ifndef __I_IMAGE_PRESENTER_H_INCLUDED__ 5#ifndef __I_IMAGE_PRESENTER_H_INCLUDED__
6#define __I_IMAGE_PRESENTER_H_INCLUDED__ 6#define __I_IMAGE_PRESENTER_H_INCLUDED__
7 7
8#include "IImage.h" 8#include "IImage.h"
9 9
10namespace irr 10namespace irr
11{ 11{
12namespace video 12namespace video
13{ 13{
14 14
15/*! 15/*!
16 Interface for a class which is able to present an IImage 16 Interface for a class which is able to present an IImage
17 an the Screen. Usually only implemented by an IrrDevice for 17 an the Screen. Usually only implemented by an IrrDevice for
18 presenting Software Device Rendered images. 18 presenting Software Device Rendered images.
19 19
20 This class should be used only internally. 20 This class should be used only internally.
21*/ 21*/
22 22
23 class IImagePresenter 23 class IImagePresenter
24 { 24 {
25 public: 25 public:
26 26
27 virtual ~IImagePresenter() {}; 27 virtual ~IImagePresenter() {};
28 //! presents a surface in the client area 28 //! presents a surface in the client area
29 virtual bool present(video::IImage* surface, void* windowId=0, core::rect<s32>* src=0 ) = 0; 29 virtual bool present(video::IImage* surface, void* windowId=0, core::rect<s32>* src=0 ) = 0;
30 }; 30 };
31 31
32} // end namespace video 32} // end namespace video
33} // end namespace irr 33} // end namespace irr
34 34
35#endif 35#endif
36 36