libsolidcontrol
networkserialinterface.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef SOLID_IFACES_SERIALNETWORKINTERFACE_H
00020 #define SOLID_IFACES_SERIALNETWORKINTERFACE_H
00021
00022 #include "../solid_control_export.h"
00023
00024 #include <QtCore/QStringList>
00025
00026 #include "../networkserialinterface.h"
00027 #include "networkinterface.h"
00028
00029
00030 namespace Solid
00031 {
00032 namespace Control
00033 {
00034 namespace Ifaces
00035 {
00039 class SOLIDCONTROLIFACES_EXPORT SerialNetworkInterface : virtual public NetworkInterface
00040 {
00041 public:
00045 virtual ~SerialNetworkInterface();
00046
00047 protected:
00048
00049 void pppStats(uint in, uint out);
00050 };
00051 }
00052 }
00053 }
00054
00055 Q_DECLARE_INTERFACE(Solid::Control::Ifaces::SerialNetworkInterface, "org.kde.Solid.Control.Ifaces.SerialNetworkInterface/0.1")
00056
00057 #endif //SOLID_IFACES_SERIALNETWORKINTERFACE_H
00058