LeechCraft  0.6.70-15082-g543737046d
Modular cross-platform feature rich live environment.
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 
13 class QString;
14 
22 class Q_DECL_EXPORT IHaveDiagInfo
23 {
24 public:
25  virtual ~IHaveDiagInfo () {}
26 
31  virtual QString GetDiagInfoString () const = 0;
32 };
33 
34 Q_DECLARE_INTERFACE (IHaveDiagInfo, "org.Deviant.LeechCraft.IHaveDiagInfo/1.0")
35 
36 #endif
IHaveDiagInfo::~IHaveDiagInfo
virtual ~IHaveDiagInfo()
Definition: ihavediaginfo.h:25
IHaveDiagInfo
Interface for plugins having human-readable diagnostic data.
Definition: ihavediaginfo.h:22