source:
trunk/MFCtooling/replay/WindowData.cpp
Last change on this file was 32, checked in by sherbold, 14 years ago | |
---|---|
File size: 180 bytes |
Line | |
---|---|
1 | #include "StdAfx.h" |
2 | #include "WindowData.h" |
3 | |
4 | void deleteWindowData(WindowData * winData) { |
5 | if( winData!=NULL ) { |
6 | deleteWindowData(winData->child); |
7 | delete winData; |
8 | } |
9 | } |
Note: See TracBrowser
for help on using the repository browser.