Created
June 21, 2020 21:51
-
-
Save caiodanielnunessantos/90e5ea27ae79fbc462db6c598633286c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Circle { | |
// Várias coisas... | |
HDC drawing; | |
MakeDrawing(HDC hdc) { | |
CreateCompatibleDC(hdc); | |
Ellipse(hdc, /*Args...*/); | |
} | |
Paint(HDC hdc) { | |
SelectObject(hdc, drawing); | |
BitBlt(hdc, /*Args...*/, SRCCOPY); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment