[1638] | 1 | /************************************************************************ |
---|
[2602] | 2 | filename: CEGUIOgreResourceProvider.h |
---|
| 3 | created: 8/7/2004 |
---|
| 4 | author: James '_mental_' O'Sullivan |
---|
| 5 | |
---|
| 6 | purpose: Defines abstract base class for CEGUIData objects |
---|
[1638] | 7 | *************************************************************************/ |
---|
| 8 | /************************************************************************* |
---|
| 9 | Crazy Eddie's GUI System (http://www.cegui.org.uk) |
---|
| 10 | Copyright (C)2004 - 2005 Paul D Turner (paul@cegui.org.uk) |
---|
| 11 | |
---|
| 12 | This library is free software; you can redistribute it and/or |
---|
| 13 | modify it under the terms of the GNU Lesser General Public |
---|
| 14 | License as published by the Free Software Foundation; either |
---|
| 15 | version 2.1 of the License, or (at your option) any later version. |
---|
| 16 | |
---|
| 17 | This library is distributed in the hope that it will be useful, |
---|
| 18 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 19 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 20 | Lesser General Public License for more details. |
---|
| 21 | |
---|
| 22 | You should have received a copy of the GNU Lesser General Public |
---|
| 23 | License along with this library; if not, write to the Free Software |
---|
| 24 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 25 | *************************************************************************/ |
---|
[2569] | 26 | #ifndef _OgreCEGUIResourceProvider_h_ |
---|
| 27 | #define _OgreCEGUIResourceProvider_h_ |
---|
[1638] | 28 | |
---|
| 29 | #include <CEGUIResourceProvider.h> |
---|
| 30 | #include "OgreCEGUIRenderer.h" |
---|
| 31 | |
---|
| 32 | // Start of CEGUI namespace section |
---|
| 33 | namespace CEGUI |
---|
| 34 | { |
---|
| 35 | class _OgrePrivate OgreCEGUIResourceProvider : public ResourceProvider |
---|
| 36 | { |
---|
| 37 | public: |
---|
[2602] | 38 | /************************************************************************* |
---|
| 39 | Construction and Destruction |
---|
| 40 | *************************************************************************/ |
---|
| 41 | OgreCEGUIResourceProvider(); |
---|
[1638] | 42 | |
---|
[2602] | 43 | ~OgreCEGUIResourceProvider(void) {} |
---|
[1638] | 44 | |
---|
| 45 | // void loadInputSourceContainer(const String& filename, InputSourceContainer& output); |
---|
| 46 | void loadRawDataContainer(const String& filename, RawDataContainer& output, const String& resourceGroup); |
---|
| 47 | void unloadRawDataContainer(RawDataContainer& output); |
---|
| 48 | }; |
---|
| 49 | |
---|
| 50 | } // End of CEGUI namespace section |
---|
| 51 | |
---|
[2569] | 52 | #endif // end of guard _OgreCEGUIResourceProvider_h_ |
---|