[omniORB] Pointer from a _var?

Stephen Crawley crawley@dstc.edu.au
Thu, 21 Jun 2001 12:19:44 +1000


You need to get the contents of the _var.  Try this:

  // Client.cpp
    Foo::ShortSeq_var ss;
    if (*ss == 0)
    {
        std::cout << "ss is null\n";
    }

-- Steve