A
Angus
I am getting this error:
asn-buf.h(133) : warning C4275: non dll-interface class
'std::basic_streambuf<char,struct std::char_traits<char> >'
used as base for dll-interface class 'SNACC::AsnRvsBuf'
asn-buf.h(132) : see declaration of 'AsnRvsBuf'
The line causing the problem is:
class __declspec(dllexport) AsnRvsBuf : public std::streambuf
What is the problem and how do I resolve?
asn-buf.h(133) : warning C4275: non dll-interface class
'std::basic_streambuf<char,struct std::char_traits<char> >'
used as base for dll-interface class 'SNACC::AsnRvsBuf'
asn-buf.h(132) : see declaration of 'AsnRvsBuf'
The line causing the problem is:
class __declspec(dllexport) AsnRvsBuf : public std::streambuf
What is the problem and how do I resolve?