Merge branch 'hotfix-1.4' into develop

This commit is contained in:
Jinhao
2016-08-11 02:27:45 +08:00
4 changed files with 87 additions and 48 deletions

View File

@@ -178,6 +178,16 @@ namespace nana
struct implementation;
std::unique_ptr<implementation> impl_;
};
class draw
{
public:
draw(graphics& graph);
void corner(const rectangle& r, unsigned pixels);
private:
graphics& graph_;
};
}//end namespace paint
} //end namespace nana
#endif