From af04d162a87aabce9498a4e5347ebae921401206 Mon Sep 17 00:00:00 2001 From: Igor Mironchik Date: Thu, 4 May 2017 21:42:01 +0300 Subject: [PATCH] Refactore QString implementation of String. --- Args/types.hpp | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Args/types.hpp b/Args/types.hpp index 9fa05e8c..2ed8d9a3 100644 --- a/Args/types.hpp +++ b/Args/types.hpp @@ -104,11 +104,6 @@ class String { { } - String( const String & other ) - : m_str( other.m_str ) - { - } - String( const QString & other ) : m_str( other ) { @@ -135,17 +130,6 @@ class String { { } - String & operator = ( const String & other ) - { - m_str = other.m_str; - - return *this; - } - - ~String() - { - } - operator QString () { return m_str;