摘要: 1 #include<iostream> 2 #include<string> 3 4 class Screen 5 { 6 public: 7 typedef std::string::size_type index; 8 Screen(const std::string &con, index hx, index wx); 9 char get() const10 { return contents[cursor];}11 inline char get(index hx, index wx) const;12 inline in... 阅读全文
posted @ 2013-06-19 22:01 joythink89 阅读(185) 评论(0) 推荐(0) 编辑