diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-11-21 17:04:21 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-11-21 17:09:35 +0900 |
commit | e6ba08c3b21cdb14ee3a97b5d584759a4597b54b (patch) | |
tree | e8b4121323f2f448aeaa15bf3bddb465f36aea8b /debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30010-class.h | |
parent | f312c235ea5f9971066f3808997d20f89c25f33b (diff) | |
download | extra-dependencies-e6ba08c3b21cdb14ee3a97b5d584759a4597b54b.tar.gz extra-dependencies-e6ba08c3b21cdb14ee3a97b5d584759a4597b54b.zip |
uncrustify-trinity: updated based on upstream version 0.74.0
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30010-class.h')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30010-class.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30010-class.h b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30010-class.h deleted file mode 100644 index 2293d9c8..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30010-class.h +++ /dev/null @@ -1,52 +0,0 @@ -#ifndef _FOO_BAR_H_INCLUDED_ -#define _FOO_BAR_H_INCLUDED_ - -class CFooBarDlg : public CDialog -{ -// Construction - public: - CFooBarDlg(CFooBar *pDataMan, - CWnd *pParent=NULL); - virtual ~CFooBarDlg(); - - void Initialize(BYTE nDelay=100); - - UINT GetCount() { return(m_nCount); } - - void SetCount(int count=1) - { - if ((count > 0) && (count < MAX_COUNT)) - { - m_nCount = count; - } - } - - // Dialog Data - //{{AFX_DATA(CATCSMgrDlg) - enum { IDD = IDD_ATCS_MGR_DLG }; - //}}AFX_DATA - - protected: - int m_nCount; - -// Overrides -// ClassWizard generated virtual function overrides -//{{AFX_VIRTUAL(CATCSMgrDlg) - protected: - virtual void DoDataExchange(CDataExchange *pDX); // DDX/DDV support - //}}AFX_VIRTUAL - -// Implementation - - // Generated message map functions - //{{AFX_MSG(CATCSMgrDlg) - virtual BOOL OnInitDialog(); - afx_msg void OnTimer(UINT nIDEvent); - afx_msg void OnBtnSendFooBar(); - afx_msg void OnSelchangeFooBarCombo(); - //}}AFX_MSG - DECLARE_MESSAGE_MAP() -}; - -#endif /* _FOO_BAR_H_INCLUDED_ */ - |