Changed all the files encoding to UTF-8

Named modules in licence informations
This commit is contained in:
Lynix
2012-08-10 03:21:37 +02:00
parent f8a0cdad39
commit 5619ddb0b1
269 changed files with 888 additions and 890 deletions

View File

@@ -1,5 +1,5 @@
// Copyright (C) 2012 AUTHORS
// This file is part of the "Nazara Engine".
// This file is part of the "Nazara Engine - Module name"
// For conditions of distribution and use, see copyright notice in Config.hpp
#pragma once

View File

@@ -1,5 +1,5 @@
/*
Nazara Engine
Nazara Engine - Module name
Copyright (C) 2012 AUTHORS (EMAIL)
@@ -27,12 +27,12 @@
#ifndef NAZARA_CONFIG_MODULENAME_HPP
#define NAZARA_CONFIG_MODULENAME_HPP
/// Chaque modification d'un paramètre du module nécessite une recompilation de celui-ci
/// Chaque modification d'un paramètre du module nécessite une recompilation de celui-ci
// Utilise un tracker pour repérer les éventuels leaks (Ralentit l'exécution)
// Utilise un tracker pour repérer les éventuels leaks (Ralentit l'exécution)
#define NAZARA_MODULENAME_MEMORYLEAKTRACKER 0
// Active les tests de sécurité basés sur le code (Conseillé pour le développement)
// Active les tests de sécurité basés sur le code (Conseillé pour le développement)
#define NAZARA_MODULENAME_SAFE 1
#endif // NAZARA_CONFIG_MODULENAME_HPP

View File

@@ -1,5 +1,5 @@
// Copyright (C) 2012 AUTHORS
// This file is part of the "Nazara Engine".
// This file is part of the "Nazara Engine - Module name"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/ModuleName/Config.hpp>

View File

@@ -1,5 +1,5 @@
// Copyright (C) 2012 AUTHORS
// This file is part of the "Nazara Engine".
// This file is part of the "Nazara Engine - Module name"
// For conditions of distribution and use, see copyright notice in Config.hpp
#if NAZARA_MODULENAME_MEMORYLEAKTRACKER || defined(NAZARA_DEBUG)

View File

@@ -1,5 +1,5 @@
// Copyright (C) 2012 AUTHORS
// This file is part of the "Nazara Engine".
// This file is part of the "Nazara Engine - Module name"
// For conditions of distribution and use, see copyright notice in Config.hpp
#pragma once

View File

@@ -1,5 +1,5 @@
// Copyright (C) 2012 AUTHORS
// This file is part of the "Nazara Engine".
// This file is part of the "Nazara Engine - Module name"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/ModuleName/ClassName.hpp>

View File

@@ -1,5 +1,5 @@
// Copyright (C) 2012 AUTHORS
// This file is part of the "Nazara Engine".
// This file is part of the "Nazara Engine - Module name"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/ModuleName/Config.hpp>

View File

@@ -1,5 +1,5 @@
// Copyright (C) 2012 AUTHORS
// This file is part of the "Nazara Engine".
// This file is part of the "Nazara Engine - Module name"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/ModuleName/ModuleName.hpp>
@@ -12,9 +12,9 @@
bool NzModuleName::Initialize()
{
if (s_moduleReferenceCouter++ != 0)
return true; // Déjà initialisé
return true; // Déjà initialisé
// Initialisation des dépendances
// Initialisation des dépendances
if (!NzCore::Initialize())
{
NazaraError("Failed to initialize core module");
@@ -36,13 +36,13 @@ bool NzModuleName::IsInitialized()
void NzModuleName::Uninitialize()
{
if (--s_moduleReferenceCouter != 0)
return; // Encore utilisé
return; // Encore utilisé
// Libération du module
// Libération du module
NazaraNotice("Uninitialized: ModuleName module");
// Libération des dépendances
// Libération des dépendances
NzCore::Uninitialize();
}