示例#1
0
 /// @brief Construct a window.
 ///
 /// @param[in] parent The parent window.
 ///
 ///
 window(window & parent,
        size_type width, size_type height,
        size_type x_position, size_type y_position) :
     underlying_window_(
         ::subwin(parent.underlying_window(),
                  height, width, y_position, x_position))
 {};