mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-21 13:41:41 +00:00
Clean up ObjectCache includes
This commit is contained in:
parent
ce3cce24a5
commit
2e62298bd3
3 changed files with 13 additions and 4 deletions
|
@ -1,5 +1,7 @@
|
||||||
#include "niffilemanager.hpp"
|
#include "niffilemanager.hpp"
|
||||||
|
|
||||||
|
#include <osg/Object>
|
||||||
|
|
||||||
#include <components/vfs/manager.hpp>
|
#include <components/vfs/manager.hpp>
|
||||||
|
|
||||||
#include "objectcache.hpp"
|
#include "objectcache.hpp"
|
||||||
|
|
|
@ -13,6 +13,8 @@
|
||||||
|
|
||||||
#include "objectcache.hpp"
|
#include "objectcache.hpp"
|
||||||
|
|
||||||
|
#include <osg/Object>
|
||||||
|
|
||||||
namespace Resource
|
namespace Resource
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -17,13 +17,18 @@
|
||||||
#ifndef OPENMW_COMPONENTS_RESOURCE_OBJECTCACHE
|
#ifndef OPENMW_COMPONENTS_RESOURCE_OBJECTCACHE
|
||||||
#define OPENMW_COMPONENTS_RESOURCE_OBJECTCACHE
|
#define OPENMW_COMPONENTS_RESOURCE_OBJECTCACHE
|
||||||
|
|
||||||
#include <osg/Node>
|
#include <osg/Referenced>
|
||||||
|
#include <osg/ref_ptr>
|
||||||
#include <osgDB/ReaderWriter>
|
|
||||||
#include <osgDB/DatabaseRevisions>
|
|
||||||
|
|
||||||
|
#include <string>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
|
namespace osg
|
||||||
|
{
|
||||||
|
class Object;
|
||||||
|
class State;
|
||||||
|
}
|
||||||
|
|
||||||
namespace Resource {
|
namespace Resource {
|
||||||
|
|
||||||
class ObjectCache : public osg::Referenced
|
class ObjectCache : public osg::Referenced
|
||||||
|
|
Loading…
Reference in a new issue