Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
User name:
Password:
Save Password
Forgot your password?

 All Forums
 Visual Assist
 Feature Requests
 Template Question
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

Uniwares
Tomato Guru

Portugal
2321 Posts

Posted - Apr 15 2004 :  12:16:46 AM  Show Profile
Given the following code fragment - is there any chance that VAX will ever be able to show the member list for "OCX()->" in the InitOCX() function ???
// class definition
template<
  typename TRootCreator, 
  typename TInterface=CComQIPtr<IUnknown, &IID_IUnknown> >
    class CGenericNode : public CDelegationBase
{
  // ctor omitted
protected:
  TInterface* OCX() { return m_pOCX; }
private:
  TInterface* m_pOCX;
};

class CArchiveMailInNode : 
  public CRootCreator, 
  public CGenericNode<CArchiveMailInNode, CComQIPtr<ILeonFLC, &IID_ILeonFLC> >
{
public:
  CArchiveMailInNode() : CRootCreator(), 
    CGenericNode<CArchiveMailInNode, CComQIPtr<ILeonFLC, &IID_ILeonFLC> >(MAKEINTRESOURCE(IDS_NODE_ARCHIVE_MAIL_IN), _T("{4003C10B-2DDC-4e76-8A8B-C3F717BEF467}"))
	{
	}
	
	void InitOCX()
	{
		OCX()->[member list here]
	}
};

  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000