File: Version.h

package info (click to toggle)
atlas-cpp 0.5.98-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,652 kB
  • ctags: 2,284
  • sloc: sh: 8,305; cpp: 6,372; python: 1,471; makefile: 216
file content (18 lines) | stat: -rw-r--r-- 509 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// This file may be redistributed and modified only under the terms of
// the GNU Lesser General Public License (See COPYING for details).
// Copyright (C) 2004 Alistair Riddoch  <alriddoch@zepler.org>

#ifndef ATLAS_VERSION_H
#define ATLAS_VERSION_H

#define ATLAS_API_MAJOR_VERSION 0
#define ATLAS_API_MINOR_VERSION 6

namespace Atlas {

static const int apiMajorVersion = ATLAS_API_MAJOR_VERSION;
static const int apiMinorVersion = ATLAS_API_MINOR_VERSION;

} // Atlas namespace

#endif // ATLAS_VERSION_H