~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to kinfocenter/Modules/base/info_sgi.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*      info_sgi.cpp
 
2
 
 
3
 !!!!! this file will be included by info.cpp !!!!!
 
4
 */
 
5
 
 
6
/*  all following functions should return true, when the Information 
 
7
 was filled into the lBox-Widget.
 
8
 returning false indicates, that information was not available.
 
9
 */
 
10
 
 
11
#include <sys/systeminfo.h>
 
12
 
 
13
bool GetInfo_IRQ(QListView *) {
 
14
        return false;
 
15
}
 
16
 
 
17
bool GetInfo_DMA(QListView *) {
 
18
        return false;
 
19
}
 
20
 
 
21
bool GetInfo_PCI(QTreeWidget*) {
 
22
        return false;
 
23
}
 
24
 
 
25
bool GetInfo_IO_Ports(QListView *) {
 
26
        return false;
 
27
}
 
28
 
 
29
bool GetInfo_SCSI(QListView *) {
 
30
        return false;
 
31
}
 
32
 
 
33
bool GetInfo_XServer_and_Video(QListView *lBox) {
 
34
        return GetInfo_XServer_Generic(lBox);
 
35
}
 
36