00001 /* 00002 * Copyright (c) 2010 Remko Tronçon 00003 * Licensed under the GNU General Public License v3. 00004 * See Documentation/Licenses/GPLv3.txt for more information. 00005 */ 00006 00007 #pragma once 00008 00009 #include <Swiften/EventLoop/EventLoop.h> 00010 00011 namespace Swift { 00012 class CocoaEventLoop : public EventLoop { 00013 public: 00014 CocoaEventLoop(); 00015 00016 virtual void post(const Event& event); 00017 00018 using EventLoop::handleEvent; 00019 }; 00020 }