1
0
forked from 0ad/0ad

Tidied up some include paths

This was SVN commit r3929.
This commit is contained in:
Ykkrosh 2006-06-02 01:01:39 +00:00
parent 0f7dd7d2b4
commit 9124f7266c
14 changed files with 18 additions and 19 deletions

View File

@ -4,8 +4,8 @@
#include "Singleton.h"
#include "CStr.h"
#include "boost/shared_ptr.hpp"
#include "boost/weak_ptr.hpp"
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>
#define g_MeshManager CMeshManager::GetSingleton()

View File

@ -11,7 +11,7 @@
#define graphics_TerrainProperties_H
#include "CStr.h"
#include "boost/shared_ptr.hpp"
#include <boost/shared_ptr.hpp>
class CTerrainGroup;
class XMBElement;

View File

@ -3,7 +3,7 @@
#include <vector>
#include <map>
#include "boost/shared_ptr.hpp"
#include <boost/shared_ptr.hpp>
#include "lib/res/handle.h"

View File

@ -169,8 +169,8 @@
// saved by including it here. (~10% in a full rebuild, as of r2365)
#include "ps/CStr.h"
#include "scripting/SpiderMonkey.h"
#include "boost/shared_ptr.hpp"
#include "boost/weak_ptr.hpp"
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>
// (further headers to be precompiled go here)

View File

@ -24,8 +24,8 @@
extern "C" {
// this is not a core library module, so it doesn't define JPEG_INTERNALS
#include "jpeglib.h"
#include "jerror.h"
#include <jpeglib.h>
#include <jerror.h>
}
#include "lib.h"

View File

@ -29,7 +29,7 @@
# define WINAPI __stdcall
# define WINAPIV __cdecl
#endif // OS_WIN
#include "png.h"
#include <png.h>
#include "lib/byte_order.h"
#include "lib/res/res.h"

View File

@ -13,7 +13,7 @@
#include <stdlib.h>
#include <ctype.h>
#include "bfd.h"
#include <bfd.h>
#include <cxxabi.h>
#ifndef bfd_get_section_size

View File

@ -29,7 +29,7 @@
#include "lib.h"
#include "win_internal.h"
#define _NO_CVCONST_H // request SymTagEnum be defined
#include "dbghelp.h"
#include <dbghelp.h>
#include <OAIdl.h> // VARIANT
#include "posix.h"
#include "sysdep/cpu.h"

View File

@ -9,5 +9,5 @@
// saved by including it here. (~10% in a full rebuild, as of r2365)
#include "ps/CStr.h"
#include "scripting/SpiderMonkey.h"
#include "boost/shared_ptr.hpp"
#include "boost/weak_ptr.hpp"
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>

View File

@ -7,7 +7,7 @@
#ifndef VECTOR_2D_INCLUDED
#define VECTOR_2D_INCLUDED
#include "math.h"
#include <math.h>
#include "Vector3D.h"
class CVector2D

View File

@ -1,4 +1,4 @@
/**
/**
* =========================================================================
* File : ModelRenderer.h
* Project : Pyrogenesis
@ -13,7 +13,7 @@
#ifndef MODELRENDERER_H
#define MODELRENDERER_H
#include "boost/shared_ptr.hpp"
#include <boost/shared_ptr.hpp>
#include "graphics/Color.h"
#include "graphics/MeshManager.h"

View File

@ -284,7 +284,7 @@ public:
WaterManager* GetWaterManager() { return m_WaterManager; }
/**
* GetWaterManager: Return the renderer's sky manager.
* GetSkyManager: Return the renderer's sky manager.
*
* @return the SkyManager object used by the renderer
*/

View File

@ -3,7 +3,6 @@
#include "BoundingObjects.h"
#include "ogl.h"
#include "MathUtil.h"
#include "stdio.h"
bool CBoundingObject::intersects( CBoundingObject* obj )
{

View File

@ -6,7 +6,7 @@
#include "BaseFormation.h"
#include "EntityFormation.h"
#include "ps/Vector2D.h"
#include "Vector2D.h"
CFormationManager::~CFormationManager()
{