Click here to Skip to main content
15,881,172 members
Articles / Programming Languages / C++

Building a simple C++ script compiler from Scintilla and CINT

Rate me:
Please Sign up or sign in to vote.
4.73/5 (25 votes)
8 Jul 2006CPOL7 min read 153.8K   7.6K   85  
How to build a simple C++ script compiler from Scintilla and CINT.
// CintocxPpg.h : Declaration of the CCintocxPropPage property page class.

////////////////////////////////////////////////////////////////////////////
// CCintocxPropPage : See CintocxPpg.cpp.cpp for implementation.

class CCintocxPropPage : public COlePropertyPage
{
	DECLARE_DYNCREATE(CCintocxPropPage)
	DECLARE_OLECREATE_EX(CCintocxPropPage)

// Constructor
public:
	CCintocxPropPage();

// Dialog Data
	//{{AFX_DATA(CCintocxPropPage)
	enum { IDD = IDD_PROPPAGE_CINTOCX };
		// NOTE - ClassWizard will add data members here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_DATA

// Implementation
protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support

// Message maps
protected:
	//{{AFX_MSG(CCintocxPropPage)
		// NOTE - ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

};

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
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