mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
(copyright and licence itself remain unchanged) fix configure to set Qt include dir code justifying
24 lines
401 B
C++
24 lines
401 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef FUNC_H
|
|
#define FUNC_H
|
|
|
|
#include <qpixmap.h>
|
|
#include "base.h"
|
|
|
|
class Validity;
|
|
|
|
QPixmap *loadImg(const char *name);
|
|
QString getPrefix();
|
|
//QString getBaseDir();
|
|
QString getHomeDir();
|
|
void applyTD(QWidget *parent, int number, int range, bool mnc,
|
|
Validity *nb, Validity *na);
|
|
|
|
#endif
|