⌨ DEVELOPMENT/C++
System Error Codes (0-499)
System Error Codes (0-499)
2015.03.30Note The information on this page is intended to be used by programmers so that the software they write can better deal with errors. If you are an end-user that is experiencing difficulty with an application you are installing or running, contact customer support for the software that is displaying the error message. To obtain support for a Microsoft product, go to http://support.microsoft.com.T..
C++에서 C#의 Delegate 사용
C++에서 C#의 Delegate 사용
2015.03.22// Callback의 개념. class Car{ typedef void(*SIGNAL)(); SIGNAL signal;public: Car(SIGNAL s = 0) : signal(s) { } void SpeedUp( int speed ) { cout