http://www.codeproject.com/threads/cthread.asp
Preface
CThread class written in Microsoft Visual C++ is a wrapper class that constitutes the base for the comfortable Windows worker thread handling in the MFC environment. CThread itself is an abstract class from which user thread-specific classes have to be derived. CThread class offers the opportunities how to define, implement and handle thread objects. Most functionality is done in this base class, a developer is just responsible to implement a thread-specific task and handle incoming notifications fired from the owner of the thread. CThread class is fully compliant to the Object-Oriented Paradigm.
Preface
CThread class written in Microsoft Visual C++ is a wrapper class that constitutes the base for the comfortable Windows worker thread handling in the MFC environment. CThread itself is an abstract class from which user thread-specific classes have to be derived. CThread class offers the opportunities how to define, implement and handle thread objects. Most functionality is done in this base class, a developer is just responsible to implement a thread-specific task and handle incoming notifications fired from the owner of the thread. CThread class is fully compliant to the Object-Oriented Paradigm.
'Windows > MFC' 카테고리의 다른 글
CNiceSliderCtrl (0) | 2013.10.02 |
---|---|
다중 쓰레드와 C++ (0) | 2013.10.02 |
GDI+ Stretch option (DrawImage, SetPixelOffsetMode, SetInterpolationMode) (0) | 2013.10.02 |
Bring your frame window a shadow (0) | 2013.10.02 |
Using TrackMouseEvent to find out when the mouse leaves your window (0) | 2013.10.02 |