Changeset - r16851:b5784600e35e
[Not reviewed]
master
0 8 0
alberth - 13 years ago 2010-12-22 11:46:41
alberth@openttd.org
(svn r21595) -Codechange: Some header files had their name changed, update the ifndef/define/endif lines.
8 files changed with 24 insertions and 24 deletions:
0 comments (0 inline, 0 general)
src/ai/ai_info.hpp
Show inline comments
 
@@ -9,8 +9,8 @@
 

	
 
/** @file ai_info.hpp AIInfo keeps track of all information of an AI, like Author, Description, ... */
 

	
 
#ifndef AI_INFO
 
#define AI_INFO
 
#ifndef AI_INFO_HPP
 
#define AI_INFO_HPP
 

	
 
#ifdef ENABLE_AI
 

	
 
@@ -158,4 +158,4 @@ private:
 
};
 

	
 
#endif /* ENABLE_AI */
 
#endif /* AI_INFO */
 
#endif /* AI_INFO_HPP */
src/animated_tile_func.h
Show inline comments
 
@@ -9,8 +9,8 @@
 

	
 
/** @file animated_tile_func.h Tile animation! */
 

	
 
#ifndef ANIMATED_TILE_H
 
#define ANIMATED_TILE_H
 
#ifndef ANIMATED_TILE_FUNC_H
 
#define ANIMATED_TILE_FUNC_H
 

	
 
#include "tile_type.h"
 

	
 
@@ -19,4 +19,4 @@ void DeleteAnimatedTile(TileIndex tile);
 
void AnimateAnimatedTiles();
 
void InitializeAnimatedTiles();
 

	
 
#endif /* ANIMATED_TILE_H */
 
#endif /* ANIMATED_TILE_FUNC_H */
src/engine_func.h
Show inline comments
 
@@ -9,8 +9,8 @@
 

	
 
/** @file engine_func.h Functions related to engines. */
 

	
 
#ifndef ENGINE_H
 
#define ENGINE_H
 
#ifndef ENGINE_FUNC_H
 
#define ENGINE_FUNC_H
 

	
 
#include "engine_type.h"
 
#include "vehicle_type.h"
 
@@ -31,4 +31,4 @@ void StartupOneEngine(Engine *e, Date ag
 

	
 
uint GetTotalCapacityOfArticulatedParts(EngineID engine);
 

	
 
#endif /* ENGINE_H */
 
#endif /* ENGINE_FUNC_H */
src/network/core/address.h
Show inline comments
 
@@ -9,8 +9,8 @@
 

	
 
/** @file core/address.h Wrapper for network addresses. */
 

	
 
#ifndef NETWORK_ADDRESS_H
 
#define NETWORK_ADDRESS_H
 
#ifndef NETWORK_CORE_ADDRESS_H
 
#define NETWORK_CORE_ADDRESS_H
 

	
 
#include "os_abstraction.h"
 
#include "config.h"
 
@@ -264,4 +264,4 @@ public:
 
};
 

	
 
#endif /* ENABLE_NETWORK */
 
#endif /* NETWORK_ADDRESS_H */
 
#endif /* NETWORK_CORE_ADDRESS_H */
src/network/core/core.h
Show inline comments
 
@@ -11,8 +11,8 @@
 
 * @file core.h Base for all network types (UDP and TCP)
 
 */
 

	
 
#ifndef NETWORK_CORE_H
 
#define NETWORK_CORE_H
 
#ifndef NETWORK_CORE_CORE_H
 
#define NETWORK_CORE_CORE_H
 

	
 
#include "../../newgrf_config.h"
 
#include "config.h"
 
@@ -82,4 +82,4 @@ public:
 

	
 
#endif /* ENABLE_NETWORK */
 

	
 
#endif /* NETWORK_CORE_H */
 
#endif /* NETWORK_CORE_CORE_H */
src/network/core/tcp_content.h
Show inline comments
 
@@ -11,8 +11,8 @@
 
 * @file tcp_content.h Basic functions to receive and send TCP packets to/from the content server.
 
 */
 

	
 
#ifndef NETWORK_CORE_CONTENT_H
 
#define NETWORK_CORE_CONTENT_H
 
#ifndef NETWORK_CORE_TCP_CONTENT_H
 
#define NETWORK_CORE_TCP_CONTENT_H
 

	
 
#include "os_abstraction.h"
 
#include "tcp.h"
 
@@ -215,4 +215,4 @@ public:
 

	
 
#endif /* ENABLE_NETWORK */
 

	
 
#endif /* NETWORK_CORE_CONTENT_H */
 
#endif /* NETWORK_CORE_TCP_CONTENT_H */
src/script/script_info.hpp
Show inline comments
 
@@ -9,8 +9,8 @@
 

	
 
/** @file script_info.hpp ScriptInfo keeps track of all information of a script, like Author, Description, ... */
 

	
 
#ifndef SCRIPT_INFO
 
#define SCRIPT_INFO
 
#ifndef SCRIPT_INFO_HPP
 
#define SCRIPT_INFO_HPP
 

	
 
#include <squirrel.h>
 
#include "../misc/countedptr.hpp"
 
@@ -101,4 +101,4 @@ private:
 
	const char *url;
 
};
 

	
 
#endif /* SCRIPT_INFO */
 
#endif /* SCRIPT_INFO_HPP */
src/waypoint_base.h
Show inline comments
 
@@ -9,8 +9,8 @@
 

	
 
/** @file waypoint_base.h Base of waypoints. */
 

	
 
#ifndef WAYPOINT_H
 
#define WAYPOINT_H
 
#ifndef WAYPOINT_BASE_H
 
#define WAYPOINT_BASE_H
 

	
 
#include "base_station_base.h"
 

	
 
@@ -64,4 +64,4 @@ struct Waypoint : SpecializedStation<Way
 

	
 
#define FOR_ALL_WAYPOINTS(var) FOR_ALL_BASE_STATIONS_OF_TYPE(Waypoint, var)
 

	
 
#endif /* WAYPOINT_H */
 
#endif /* WAYPOINT_BASE_H */
0 comments (0 inline, 0 general)