11 lines
236 B
C++
11 lines
236 B
C++
/// @file
|
|
/// @brief Task3: Implementation of 'Point'
|
|
|
|
#pragma once
|
|
|
|
namespace task3 {
|
|
|
|
/// @todo Implement a struct or class 'Point' that fulfills the concept task3::PointConcept (details see 'task3.concept.hpp')
|
|
|
|
} // namespace task3
|