[go: up one dir, main page]

Menu

[r999]: / trunk / VTS3 / ScriptMsgMake.cpp  Maximize  Restore  History

Download this file

30 lines (20 with data), 580 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// ScriptMsgMake.cpp : implementation file
//
#include "stdafx.h"
#include "vts.h"
#include "ScriptMsgMake.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
ScriptMsgMake::ScriptMsgMake(ScriptMsgMakeType nType, CScriptMakeDlg * pdlg)
:ScriptExecMsg(ScriptExecMsg::msgMakeDlg), m_maketype(nType), m_pdlg(pdlg)
{
}
ScriptMsgMake::~ScriptMsgMake()
{
// Invalidate all out pointers: we think someone is using us post mortem
m_pdlg = NULL;
}