Show
Ignore:
Timestamp:
01/23/10 17:16:29 (8 months ago)
Author:
trichards
Message:

Cleaned up uninitialized variables and fixed some header include orders. Asynchronous event implementation works now, but the script test has a bad_any_cast exception being thrown. Need to look into that.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Core/branches/0075_TR_SCRIPTING/Event/src/Event.cpp

    r3305 r3308  
    3535#include "EventQueue.hpp" 
    3636 
    37 #include <Zen/Core/Scripting.hpp> 
     37#include <Zen/Core/Scripting/forward_declarations.hpp> 
     38#include <Zen/Core/Scripting/I_ScriptType.hpp> 
    3839 
    3940#include <boost/bind.hpp> 
     
    4546Event_impl::Event_impl(EventQueue& _queue) 
    4647:   m_queue(_queue) 
     48,   m_connections() 
    4749,   m_pMutex(Threading::MutexFactory::create()) 
     50,   m_pScriptObject(NULL) 
    4851{ 
    4952}