summaryrefslogtreecommitdiff
path: root/lingucomponent/source/languageguessing/guess.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lingucomponent/source/languageguessing/guess.hxx')
-rw-r--r--lingucomponent/source/languageguessing/guess.hxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/lingucomponent/source/languageguessing/guess.hxx b/lingucomponent/source/languageguessing/guess.hxx
index e68d852a53a6..627033d3ab7f 100644
--- a/lingucomponent/source/languageguessing/guess.hxx
+++ b/lingucomponent/source/languageguessing/guess.hxx
@@ -28,8 +28,6 @@
#include <string>
-using namespace std;
-
class Guess final {
public:
@@ -43,12 +41,12 @@ class Guess final {
*/
Guess(const char * guess_str);
- const string& GetLanguage() const { return language_str;}
- const string& GetCountry() const { return country_str;}
+ const std::string& GetLanguage() const { return language_str;}
+ const std::string& GetCountry() const { return country_str;}
private:
- string language_str;
- string country_str;
+ std::string language_str;
+ std::string country_str;
};
#endif