diff --git a/include/tug/Grid.hpp b/include/tug/Grid.hpp index e69de29..194182c 100644 --- a/include/tug/Grid.hpp +++ b/include/tug/Grid.hpp @@ -0,0 +1,35 @@ +#include +#include + +using namespace std; + +class Grid { + public: + /** + * @brief Construct a new Grid object + * + * @param n + */ + Grid(int n); + + /** + * @brief Construct a new Grid object + * + * @param n + * @param m + */ + Grid(int n, int m); + + /** + * @brief Set the Alpha object + * + * @param alpha + */ + void setAlpha(vector alpha); + + void setAlpha(vector alpha_x, vector alpha_y); + + private: + + +}; \ No newline at end of file