Changeset 457 for cafu/trunk/Common

Show
Ignore:
Timestamp:
01/09/12 23:04:20 (4 months ago)
Author:
Carsten
Message:

Using UltraEdit's multi-line search-and-replace-in-files feature, replaced


^#ifndef _(CAFU|CF|CFS|CA)_(.*)_$
^#define _\1_\2_$

with

#ifndef CAFU_\2_INCLUDED
#define CAFU_\2_INCLUDED

and


^#ifndef _(.*)_HPP_$
^#define _\1_HPP_$

with

#ifndef CAFU_\1_HPP_INCLUDED
#define CAFU_\1_HPP_INCLUDED

Closes #91.

Location:
cafu/trunk/Common
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • cafu/trunk/Common/World.hpp

    r455 r457  
    2424/**********************/ 
    2525 
    26 #ifndef _WORLD_HPP_ 
    27 #define _WORLD_HPP_ 
     26#ifndef CAFU_WORLD_HPP_INCLUDED 
     27#define CAFU_WORLD_HPP_INCLUDED 
    2828 
    2929#include "Templates/Array.hpp" 
  • cafu/trunk/Common/WorldMan.hpp

    r455 r457  
    2020*/ 
    2121 
    22 #ifndef _WORLD_MANAGER_HPP_ 
    23 #define _WORLD_MANAGER_HPP_ 
     22#ifndef CAFU_WORLD_MANAGER_HPP_INCLUDED 
     23#define CAFU_WORLD_MANAGER_HPP_INCLUDED 
    2424 
    2525#include "World.hpp"