Add assigment-operator (otherwise compilation error).
This commit is contained in:
		@@ -34,6 +34,13 @@ struct TimeRange {
 | 
			
		||||
        m_duration = timeRange.m_duration;
 | 
			
		||||
        return *this;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    TimeRange &operator=(TimeRange const &timeRange) {
 | 
			
		||||
        m_start = timeRange.m_start;
 | 
			
		||||
        m_end = timeRange.m_end;
 | 
			
		||||
        m_duration = timeRange.m_duration;
 | 
			
		||||
        return *this;
 | 
			
		||||
    }
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#endif // TIME_RANGE_H_INCLUDED
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user