LeechCraft 0.6.70-17335-ge406ffdcaf
Modular cross-platform feature rich live environment.
Loading...
Searching...
No Matches
ihavediaginfo.h
Go to the documentation of this file.
1/**********************************************************************
2 * LeechCraft - modular cross-platform feature rich internet client.
3 * Copyright (C) 2006-2014 Georg Rudoy
4 *
5 * Distributed under the Boost Software License, Version 1.0.
6 * (See accompanying file LICENSE or copy at https://www.boost.org/LICENSE_1_0.txt)
7 **********************************************************************/
8
9#ifndef INTERFACES_IDIAGINFO_H
10#define INTERFACES_IDIAGINFO_H
11#include <QtPlugin>
12
13class QString;
14
22class Q_DECL_EXPORT IHaveDiagInfo
23{
24public:
25 virtual ~IHaveDiagInfo () {}
26
31 virtual QString GetDiagInfoString () const = 0;
32};
33
34Q_DECLARE_INTERFACE (IHaveDiagInfo, "org.Deviant.LeechCraft.IHaveDiagInfo/1.0")
35
36#endif
Interface for plugins having human-readable diagnostic data.
virtual ~IHaveDiagInfo()
virtual QString GetDiagInfoString() const =0
Returns the human-readable diagnostic info.