Click here to Skip to main content
15,883,705 members
Articles / Programming Languages / C++

Useful Managers

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
11 Aug 2001 80.4K   1.2K   16  
An add-in for Devstudio that provides tag indexing and search, window, bookmarks, session and other managers
#if !defined(AFX_LINKS_H__95B0737A_3C7B_11D4_93EF_00C0DF25C7D9__INCLUDED_)
#define AFX_LINKS_H__95B0737A_3C7B_11D4_93EF_00C0DF25C7D9__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++

// NOTE: Do not modify the contents of this file.  If this class is regenerated by
//  Microsoft Visual C++, your modifications will be overwritten.


// Dispatch interfaces referenced by this interface
class CLink;

/////////////////////////////////////////////////////////////////////////////
// CLinks wrapper class

class CLinks : public COleDispatchDriver
{
public:
	CLinks() {}		// Calls COleDispatchDriver default constructor
	CLinks(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
	CLinks(const CLinks& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}

// Attributes
public:
	long GetCount();
	void SetCount(long);

// Operations
public:
	void Clear();
	CLink Item(const VARIANT& Index);
	CLink Add(LPDISPATCH nodx);
	void Remove(const VARIANT& Index);
	CLink _NewEnum();
};

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

#endif // !defined(AFX_LINKS_H__95B0737A_3C7B_11D4_93EF_00C0DF25C7D9__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
Web Developer
Russian Federation Russian Federation
Mike has been programming in C/C++ for 11 years and Visual C++/MFC for 4 years. His background includes pure and applied mathematics, engineering and physics, and he is currently based in Moscow, Russia.

Comments and Discussions