00001 //-------------------------------------------------------------------- 00002 // 00003 // File: TxqDefines.h 00004 // 00005 // Purpose: #defines needed by the QScimpl project 00006 // 00007 // Version: $Id: TxqDefines.h,v 1.3 2001/12/06 23:56:07 kgl Exp $ 00008 // 00009 // Author: Kelly G. Luetkemeyer 00010 // 00011 // Copyright (c) 2000 by Tech-X Corporation. All rights reserved. 00012 //--------------------------------------------------------------------------- 00013 00014 #ifndef TXQ_DEFINES_H 00015 #define TXQ_DEFINES_H 00016 00020 #ifndef MIN 00021 #define MIN(a,b) ((a<b) ? (a) : (b)) 00022 #endif 00023 00027 #ifndef MAX 00028 #define MAX(a,b) ((a>b) ? (a) : (b)) 00029 #endif 00030 00034 #define SCALE_LINEAR 0 00035 00039 #define SCALE_LOG 1 00040 00041 #endif
Copyright Tech-X Corporation, all rights reserved.