1 | /************************************************************************
|
---|
2 | filename: CEGUIDefaultResourceProvider.h
|
---|
3 | created: 8/7/2004
|
---|
4 | author: James '_mental_' O'Sullivan
|
---|
5 |
|
---|
6 | purpose: Defines abstract base class for CEGUIData objects
|
---|
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 | *************************************************************************/
|
---|
26 | #ifndef _CEGUIDefaultResourceProvider_h_
|
---|
27 | #define _CEGUIDefaultResourceProvider_h_
|
---|
28 |
|
---|
29 | #include "CEGUIBase.h"
|
---|
30 | #include "CEGUIResourceProvider.h"
|
---|
31 |
|
---|
32 |
|
---|
33 | // Start of CEGUI namespace section
|
---|
34 | namespace CEGUI
|
---|
35 | {
|
---|
36 | class CEGUIEXPORT DefaultResourceProvider : public ResourceProvider
|
---|
37 | {
|
---|
38 | public:
|
---|
39 | /*************************************************************************
|
---|
40 | Construction and Destruction
|
---|
41 | *************************************************************************/
|
---|
42 | DefaultResourceProvider() {}
|
---|
43 | ~DefaultResourceProvider(void) {}
|
---|
44 |
|
---|
45 | // void loadInputSourceContainer(const String& filename, InputSourceContainer& output);
|
---|
46 | void loadRawDataContainer(const String& filename, RawDataContainer& output, const String& resourceGroup);
|
---|
47 | };
|
---|
48 |
|
---|
49 | } // End of CEGUI namespace section
|
---|
50 |
|
---|
51 | #endif // end of guard _CEGUIDefaultResourceProvider_h_
|
---|