-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.h
42 lines (35 loc) · 1.46 KB
/
version.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* -*- Mode: C++ -*-
* PET
* Platform for Experimentation with efficient HPSG processing Techniques
* (C) 1999 - 2002 Ulrich Callmeier [email protected]
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/** \file version.h
* PET version information for use in flop and cheap
*/
#ifndef _VERSION_H
#define _VERSION_H
#include "pet-config.h"
#define VERSION_DATETIME "$LastChangedDate$"
#define VERSION_CHANGE "$Change: 850 $"
/** The version string for the current PET version. */
extern const char *version_string;
/** The perforce change string for the current PET version.
* This should correlate with the version string. It is mainly there to check
* that the version number reflects the state of the package.
*/
extern const char *version_change_string;
#endif