Hi Justin,

looking at QtD, it seems like it can be done :

In file 
http://www.dsource.org/projects/qtd/browser/demos/browser/browsermainwindow.d

        m_historyHome.triggered().connect(&this.slotHome);

        // ...

        public:
        
            void slotHome()
            {
                // ...
            }

I however believe that this kind of delegate-connection can also be performed 
in C++ (with templates?). Maybe Qt developers simply continue using the MOC 
because they don't want to break backwards compatibility.

-- Auria

Reply via email to