initial import

This commit is contained in:
Mo Elzubeir
2022-12-13 09:18:00 -06:00
commit d2d561810c
322 changed files with 1147261 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#pragma once
#include <iostream>
using namespace std;
class Coordinates
{
public:
Coordinates(int top, int left, int bottom, int right);
bool operator == (Coordinates const & coor);
int top();
int left();
int bottom();
int right();
friend ostream & operator<<( std::ostream & out, Coordinates const & coor);
private:
int m_top;
int m_left;
int m_bottom;
int m_right;
};