/* * Copyright (c) 2018 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include namespace Swift { class QtServerListView : public QListView { Q_OBJECT public: QtServerListView(); virtual ~QtServerListView(); private: std::unique_ptr delegate_; static const int widgetWidth = 82; }; }