diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-23 19:52:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-23 19:52:08 +0300 |
commit | 6d28f4d48f5cb3462765c7a1d582cea49352be1f (patch) | |
tree | 797671acb4cfbe9f5510e8d9769742f17d7a9b2c /src/utils | |
parent | ecc0dbab411d6f1f741dd19d0bc593ecc36a4941 (diff) | |
download | mv-6d28f4d48f5cb3462765c7a1d582cea49352be1f.tar.gz mv-6d28f4d48f5cb3462765c7a1d582cea49352be1f.tar.bz2 mv-6d28f4d48f5cb3462765c7a1d582cea49352be1f.tar.xz mv-6d28f4d48f5cb3462765c7a1d582cea49352be1f.zip |
Add missing final keywords to classes.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/translation/podict.h | 2 | ||||
-rw-r--r-- | src/utils/translation/poparser.h | 2 | ||||
-rw-r--r-- | src/utils/translation/translationmanager.h | 2 | ||||
-rw-r--r-- | src/utils/xml.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/utils/translation/podict.h b/src/utils/translation/podict.h index 86a09b0d9..71c604f38 100644 --- a/src/utils/translation/podict.h +++ b/src/utils/translation/podict.h @@ -26,7 +26,7 @@ typedef std::map <std::string, std::string> PoMap; -class PoDict +class PoDict final { public: PoDict(std::string lang); diff --git a/src/utils/translation/poparser.h b/src/utils/translation/poparser.h index 254c44a34..274591d3b 100644 --- a/src/utils/translation/poparser.h +++ b/src/utils/translation/poparser.h @@ -28,7 +28,7 @@ #include <sstream> #include <string> -class PoParser +class PoParser final { public: PoParser(); diff --git a/src/utils/translation/translationmanager.h b/src/utils/translation/translationmanager.h index 25f88a4c1..55d8a44e4 100644 --- a/src/utils/translation/translationmanager.h +++ b/src/utils/translation/translationmanager.h @@ -27,7 +27,7 @@ class PoDict; -class TranslationManager +class TranslationManager final { public: static PoDict *loadLang(StringVect lang, diff --git a/src/utils/xml.h b/src/utils/xml.h index cef1ebae2..40922db5d 100644 --- a/src/utils/xml.h +++ b/src/utils/xml.h @@ -43,7 +43,7 @@ namespace XML * A helper class for parsing an XML document, which also cleans it up * again (RAII). */ - class Document + class Document final { public: /** |