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.
kile/src/kile/kileversion.h

34 lines
1.4 KiB

/***************************************************************************
begin : Wednesday Jan 25 2006
copyright : (C) 2006 by Thomas Braun
email : braun@physik.fu-berlin.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
****************************************************************************/
#ifndef KILEVERSION_H
#define KILEVERSION_H
#include <tqstring.h>
const TQString kileVersion="2.0";
const TQString kileFullVersion="2.0.3";
const TQString kilePrVersion="2";
/**
* Compares two strings of the form "a.b(.c)" and "d.e(.f)" lexicographically,
* where a, b, c, d, e and f are natural numbers.
* @return 1 if s1 is bigger than s2, 0 if s1 == s2, -1 if s1 is smaller than s2
**/
int compareVersionStrings(const TQString& s1, const TQString& s2);
#endif