receipt_indexer/code/libraries/include/line.h
Ethan Wellenreiter 65d28173a4 First steps towards implementing shared libraries.
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>
2023-10-26 00:45:57 -04:00

20 lines
106 B
C++

#ifndef LINE_H
#define LINE_H
class Line {
private:
public:
private:
public:
};
#endif //LINE_H