Hello, I am having the following problem while running my C++ ATMI Tuxedo client application:
When I call "tpcall()" in this way:
tpcall((char*)svc_name, (char*)buf, 0, (char**)&o_buf, &o_len, 0)
It returns me the following error + message:
TPESVCERR - server error while handling request
The...
Hi all,
consider the following problem:
// class A declaration
class A
{
virtual void do_one_something() = 0;
};
// class Atemplate declaration
template<class T>
class Atemplate:public A
{
public:
void do_one_somenthing(); //implementation is provided...
Hello,
I've have defined some templates in a .h file and implemented some of the declared functions in a separate .cpp file.
The problem is that the linker recognizes all those functions implemented in the .h
files (i.e. inline functions), but does not recognize the
ones in the .cpp files...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.