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

« back to all changes in this revision

Viewing changes to kinfocenter/Modules/base/info_solaris.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
/*
 
2
 *  info_solaris.cpp
 
3
 *
 
4
 *  Torsten Kasch <tk@Genetik.Uni-Bielefeld.DE>
 
5
 */
 
6
 
 
7
#include "config-infocenter.h"
 
8
 
 
9
#include <QTreeWidgetItemIterator>
 
10
 
 
11
#include <stdio.h>
 
12
#include <stdlib.h>
 
13
#include <kstat.h>
 
14
#include <sys/types.h>
 
15
#include <sys/statvfs.h>
 
16
#include <time.h>
 
17
 
 
18
bool GetInfo_IRQ(QTreeWidget*) {
 
19
        return false;
 
20
}
 
21
 
 
22
bool GetInfo_DMA(QTreeWidget*) {
 
23
        return false;
 
24
}
 
25
 
 
26
bool GetInfo_PCI(QTreeWidget*) {
 
27
        return false;
 
28
}
 
29
 
 
30
bool GetInfo_IO_Ports(QTreeWidget*) {
 
31
        return false;
 
32
}
 
33
 
 
34
bool GetInfo_SCSI(QTreeWidget*) {
 
35
        return false;
 
36
}
 
37
 
 
38
bool GetInfo_XServer_and_Video(QTreeWidget* tree) {
 
39
        return GetInfo_XServer_Generic(tree);
 
40
}