43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
/*
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (c) 1994,1995 Southeastern Universities Research Association,
|
|
// Continuous Electron Beam Accelerator Facility
|
|
//
|
|
// This software was developed under a United States Government license
|
|
// described in the NOTICE file included as part of this distribution.
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
//
|
|
// Description:
|
|
// CDEV VERSION Information
|
|
//
|
|
// Author: Jie Chen
|
|
//
|
|
// Revision History:
|
|
// cdevVersion.h,v
|
|
// Revision 1.3 1997/12/22 18:23:06 akers
|
|
// Ongoing development of 1.6.2
|
|
//
|
|
// Revision 1.2 1997/10/17 17:27:18 chen
|
|
// set right version number
|
|
//
|
|
// Revision 1.1 1997/08/27 18:23:33 chen
|
|
// Change error reporting to site specific scheme
|
|
//
|
|
//
|
|
//
|
|
*/
|
|
#ifndef _CDEV_VERSION_H
|
|
#define _CDEV_VERSION_H
|
|
|
|
#define CDEV_MAJOR_VERS 1
|
|
#define CDEV_MINOR_VERS 7
|
|
#define CDEV_REVISION 2
|
|
|
|
#define CDEV_VERSION (CDEV_MAJOR_VERS*10000 + CDEV_MINOR_VERS*100 + CDEV_REVISION)
|
|
|
|
#define CDEV_VERSION_STRING "1.7.2"
|
|
|
|
#endif
|
|
|