|
Boost Users : |
Subject: Re: [Boost-users] [serializaton] namespace issues with extended typeinfo
From: Robert Ramey (ramey_at_[hidden])
Date: 2009-01-13 20:21:04
All the macros that the serialization library defined are assumed to
be invoked from the global namespace. Invoking them from any
other namespace will fail.
Robert Ramey
"Daniel Roberts" <impulsionaudio_at_[hidden]> wrote in message news:14125aaf0901131529i5fc67c1dj651a350a07a6741b_at_mail.gmail.com...
If I nest macro calls such as:
namespace SomeNamespace
{
BOOST_SERIALIZATION_ASSUME_ABSTRACT(SomeClass)
BOOST_CLASS_TYPE_INFO(SomeClass, extended_type_info_no_rtti<SomeClass>)
BOOST_CLASS_EXPORT(SomeClass)
}
inside the namespace containing the type I get a TON of compiler errors. The wackiest is that the compiler thinks boost is a namespace inside of my namespace. Things improve (not fully tested) if I move the macros outside of my namespace and qualify the type with namespace name:
BOOST_SERIALIZATION_ASSUME_ABSTRACT(SomeNamespace::SomeClass)
BOOST_CLASS_TYPE_INFO(SomeNamespace::SomeClass, extended_type_info_no_rtti<SomeNamespace::SomeClass>)
BOOST_CLASS_EXPORT(SomeNamespace::SomeClass)
Can someone explain please?
Thanks
------------------------------------------------------------------------------
_______________________________________________
Boost-users mailing list
Boost-users_at_[hidden]
http://lists.boost.org/mailman/listinfo.cgi/boost-users
Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net