Click here to Skip to main content
15,886,071 members
Articles / Programming Languages / C++

MoreFast Add-In for faster Development

,
Rate me:
Please Sign up or sign in to vote.
4.53/5 (9 votes)
8 Aug 20026 min read 176.9K   1.9K   45  
A VS addin that does a variety of different tasks to make programming easier.
#if !defined(AFX_FUNCTIONNAMEDLG_H__A5B6920E_6C30_46AC_9EDF_91467A883BCD__INCLUDED_)
#define AFX_FUNCTIONNAMEDLG_H__A5B6920E_6C30_46AC_9EDF_91467A883BCD__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// FunctionNameDlg.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CFunctionNameDlg dialog
#include <afxdlgs.h>
class CCommands;

class CFunctionNameDlg : public CDialog
{
// Construction
public:
	CFunctionNameDlg(CWnd* pParent = NULL);   // standard constructor
	void SetCommandObject(CCommands *command);

// Dialog Data
	//{{AFX_DATA(CFunctionNameDlg)
	enum { IDD = IDD_FUNCTION_NAME };
		// NOTE: the ClassWizard will add data members here
	CString	m_sFunctionName;
	//}}AFX_DATA

	CCommands *m_pCommands;

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CFunctionNameDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CFunctionNameDlg)
		// NOTE: the ClassWizard will add member functions here
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_FUNCTIONNAMEDLG_H__A5B6920E_6C30_46AC_9EDF_91467A883BCD__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Founder IntelliPro Solutions Pvt. Ltd.
India India
A 8 or something in .NET, living in Ahmedabad, India owned IntelliPro Solutions Pvt. Ltd..

Currently working on .NET technologies, MVC and Silverlight.

My little blog is for helping community with the solution for problems or helping them to understand new technology. You can reach to my blog at http://maniish.wordpress.com.

To contact me, post comment here or email me at manish AT iprospl.com
This is a Organisation (No members)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions