Files
CS3210/Lab5/line.h
2022-04-12 19:07:41 -05:00

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:
}