You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qps-packaging/src/ttystr.h

36 lines
547 B

// ttystr.h
//
// This program is free software. See the file COPYING for details.
// Author: Mattias Engdegård, 1997-1999
#ifndef TTYSTR_H
#define TTYSTR_H
#include "config.h"
#include <QString>
#ifdef LINUX
#include <sys/sysmacros.h>
#endif
#ifdef SOLARIS
#include <QHash>
#endif
class Ttystr
{
public:
static QString name(dev_t devnr);
#ifdef SOLARIS
private:
static void read_devs();
static void scandevdir(const char *prefix);
static QHash<int, char *> dict;
static bool scanned;
#endif
};
#endif // TTYSTR_H