Currently have Rectangle library set up; just need to implement the actual functions in the .cpp file. Also set Line library to begin creating the class and functions. Set up the CMake as well which was a bit of a pain. Also added the libraries branch to the setup scripts. Signed-off-by: Ethan Wellenreiter <ewellenreiter@gmail.com>
20 lines
106 B
C++
20 lines
106 B
C++
#ifndef LINE_H
|
|
#define LINE_H
|
|
|
|
|
|
class Line {
|
|
private:
|
|
|
|
public:
|
|
|
|
|
|
private:
|
|
|
|
|
|
public:
|
|
|
|
|
|
};
|
|
|
|
|
|
#endif //LINE_H
|