source: trunk/MFCtooling/replay/WindowData.cpp @ 32

Last change on this file since 32 was 32, checked in by sherbold, 13 years ago
File size: 180 bytes
Line 
1#include "StdAfx.h"
2#include "WindowData.h"
3
4void 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.