added getters for current cell
This commit is contained in:
parent
d3d3e1821c
commit
1b62eaa76e
18
lib/fort.hpp
18
lib/fort.hpp
@ -945,6 +945,24 @@ public:
|
|||||||
return (*this)[row_idx][col_idx];
|
return (*this)[row_idx][col_idx];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
cur_col()
|
||||||
|
{
|
||||||
|
return ft_cur_col(table_);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
cur_row()
|
||||||
|
{
|
||||||
|
return ft_cur_row(table_);
|
||||||
|
}
|
||||||
|
|
||||||
|
class table_cell
|
||||||
|
cur_cell()
|
||||||
|
{
|
||||||
|
return cell(cur_row(), cur_col());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get row.
|
* Get row.
|
||||||
*
|
*
|
||||||
|
18
src/fort.hpp
18
src/fort.hpp
@ -945,6 +945,24 @@ public:
|
|||||||
return (*this)[row_idx][col_idx];
|
return (*this)[row_idx][col_idx];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
cur_col()
|
||||||
|
{
|
||||||
|
return ft_cur_col(table_);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
cur_row()
|
||||||
|
{
|
||||||
|
return ft_cur_row(table_);
|
||||||
|
}
|
||||||
|
|
||||||
|
class table_cell
|
||||||
|
cur_cell()
|
||||||
|
{
|
||||||
|
return cell(cur_row(), cur_col());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get row.
|
* Get row.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user