Re: [Dbus-cxx-users] locks at on creating controller adapter
Status: Beta
Brought to you by:
rvinyard
|
From: Rick L. V. Jr. <rvi...@cs...> - 2009-09-02 21:14:07
|
vas...@gm... wrote:
> Sorry about replying to my own post but maybe someone may use this. The
> problem was in the constructor of the Controller
> class, I had this code in place which I assumed messed with the copy
> constructor creation in the code generated by XML:
>
> Controller::Controller() {
> //initialize logger
> //TODO move outside the constructor
> logger = log4cxx::Logger::getLogger("Controller");
> BasicConfigurator::configure();
> logger->setLevel(log4cxx::Level::getTrace());
>
> }
>
> Vasile
>
Sounds like you got it figured out then?
I'm surprised that the Controller's constructor would effect the adapter
though, since the only thing that is really stored is a pointer to the
adaptee.
|