21 lines
254 B
C++
21 lines
254 B
C++
/**
|
|
* @file line.h
|
|
* @author your name (you@domain.com)
|
|
* @brief
|
|
* @version 0.1
|
|
* @date 2022-04-12
|
|
*
|
|
* @copyright Copyright (c) 2022
|
|
*
|
|
*/
|
|
|
|
#include "shape.h"
|
|
#include "matrix.h"
|
|
|
|
class Line: public Shape{
|
|
public:
|
|
|
|
private:
|
|
|
|
|
|
} |