Fix crash: fix wrong use of QMap's.
[kdenetwork.git] / wifi / asusled.h
bloba51f6f54e869a4625b77bf7150d32873aa74a308
1 /***************************************************************************
2 led.h - description
3 -------------------
4 begin : wo okt 8 2003
5 copyright : (C) 2003 by Stefan Winter
6 email : mail@stefan-winter.de
7 ***************************************************************************/
9 /***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
18 #ifndef ASUSLED_H
19 #define ASUSLED_H
21 #include <fstream>
23 /**
24 *@author Roeland Merks
27 class Led
29 public:
30 Led ( );
31 ~Led ( );
32 void On ( void );
33 void Off ( void );
34 bool state;
36 private:
37 std::ofstream * led;
40 #endif