From 0ac173e42098aff7a06e0e654fd6938bd81ae404 Mon Sep 17 00:00:00 2001 From: Matthew Wilber Date: Sat, 11 Jan 2003 13:51:18 +0000 Subject: [PATCH] renamed R4xTranslator.h to FuncTranslator.h git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2407 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../{R4xTranslator.h => FuncTranslator.h} | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) rename headers/os/translation/{R4xTranslator.h => FuncTranslator.h} (86%) diff --git a/headers/os/translation/R4xTranslator.h b/headers/os/translation/FuncTranslator.h similarity index 86% rename from headers/os/translation/R4xTranslator.h rename to headers/os/translation/FuncTranslator.h index 2ed8e1e3ae..7ce9845bb0 100644 --- a/headers/os/translation/R4xTranslator.h +++ b/headers/os/translation/FuncTranslator.h @@ -1,16 +1,17 @@ /*****************************************************************************/ -// File: R4xTranslator.h -// Class: BR4xTranslator +// File: FuncTranslator.h +// Class: BFuncTranslator // Author: Michael Wilber, Translation Kit Team // Originally Created: 2002-06-11 // // Description: This header file contains the BTranslator based object for -// BeOS R4.0 and R4.5 type translators, aka, the translators +// function based translators, aka, the translators // that don't use the make_nth_translator() mechanism. // // This class is used by the OpenBeOS BTranslatorRoster -// so that R4x translators, post R4.5 translators and private -// BTranslator objects could be accessed in the same way. +// so that function based translators, make_nth_translator() +// translators and private BTranslator objects could be +// accessed in the same way. // // // Copyright (c) 2002 OpenBeOS Project @@ -34,16 +35,16 @@ // DEALINGS IN THE SOFTWARE. /*****************************************************************************/ -#ifndef _R4X_TRANSLATOR_H -#define _R4X_TRANSLATOR_H +#ifndef _FUNC_TRANSLATOR_H +#define _FUNC_TRANSLATOR_H #include #include #include -class BR4xTranslator : public BTranslator { +class BFuncTranslator : public BTranslator { public: - BR4xTranslator(const translator_data *kpData); + BFuncTranslator(const translator_data *kpData); // assigns the translator to the object virtual const char *TranslatorName() const; @@ -84,7 +85,7 @@ public: // (not required to be in all translators) protected: - virtual ~BR4xTranslator(); + virtual ~BFuncTranslator(); // This object is deleted by calling Release(), // it can not be deleted directly. See BTranslator in the Be Book @@ -95,4 +96,4 @@ private: // use to do all of the actual work for this class. }; -#endif // _R4X_TRANSLATOR_H +#endif // _FUNC_TRANSLATOR_H