summaryrefslogtreecommitdiff
path: root/ycurses/src/curses/coordinate.impl
blob: 8bdf17c2763d5181e93cd3b723789e720ab33308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
template<class T>
coordinate
create_coordinate(dummy_window& d_window)
{
  coordinate coord;
  T(d_window, coord.x, coord.y);
  return coord; 
}

template<class T>
coordinate
create_coordinate()
{
  coordinate coord;
  T(coord.x, coord.y);
  return coord; 
}