Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Codewarrior Windows > Re: precomp hea...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 2 of 2 Topic 269 of 319
Post > Topic >>

Re: precomp header and implied inline functions

by fraggle@[EMAIL PROTECTED] (Fraggle) Apr 12, 2005 at 10:54 AM

Well as there's no takers yet, I'll post I've been able to figure out
in the last couple of days.

I've noticed that in at least one instance an entire class is not
being ex****ted.  The one example I've confirmed is this one:

namespace VCF
{
class __declspec(dllex****t) Lock :public VCF::Object
{
public:
	Lock( VCF::SynchObject& synchObject ):synchObject_(synchObject)
	{
		validSynchObject_ = synchObject_.lock();
	}


	virtual ~Lock()
	{
		if( true == validSynchObject_ )
		{
			synchObject_.unlock();
		}
	}
protected:
	bool validSynchObject_;
	VCF::SynchObject& synchObject_;

private:
	Lock& operator = ( const Lock& lock ) { return *this; };

};
} // namespace VCF
 




 2 Posts in Topic:
precomp header and implied inline functions
fraggle@[EMAIL PROTECTED]  2005-04-09 07:57:43 
Re: precomp header and implied inline functions
fraggle@[EMAIL PROTECTED]  2005-04-12 10:54:35 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Wed Jul 23 23:34:49 CDT 2008.