summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30002-constructor.cpp
blob: f7cbb30d8daa60d90023547306a459bfb1ce7f0f (plain)
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
27
28
29
30
31

IMPLEMENT_DYNAMIC(CPropertiesDlg, CDialog)
CPropertiesDlg::CPropertiesDlg(CPtcMsgSimControlModule *pcmPtcMsg,
                               CWnd                    *pParent /*=NULL*/) :
   CDialog(CPropertiesDlg::IDD, pParent),
   m_pspRouter(pcmPtcMsg),
   m_pspScm(pcmPtcMsg)
{
   m_pcmPtcMsg = pcmPtcMsg;
}

CPropertiesDlg::~CPropertiesDlg()
{
}

void CPropertiesDlg::DoDataExchange(CDataExchange *pDX)
{
   CDialog::DoDataExchange(pDX);
}

CFooBar::CFooBar(CWnd *pParent /*=NULL*/)
   : CDialog(CFooBar::IDD, pParent),
   m_parent(pParent)
{
   //{{AFX_DATA_INIT(CRouterBrowser)
   //}}AFX_DATA_INIT

   m_nFoo = 0;
   m_nBar = 0;
}