-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.h.in
More file actions
36 lines (31 loc) · 1.06 KB
/
Copy pathconfig.h.in
File metadata and controls
36 lines (31 loc) · 1.06 KB
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
// -----------------------------------------------------------------------------
//
// GAMCS -- Generalized Agent Model and Computer Simulation
//
// Copyright (C) 2013-2014, Andy Huang <andyspider@126.com>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// -----------------------------------------------------------------------------
//
// Created on: Mar 5, 2014
//
// -----------------------------------------------------------------------------
/**
* @mainpage notitle
* @section GAMCS Documentation
* This documentation explains the C++ APIs of GAMCS library. For more detailed
* explanations abount GAM and GAMCS concepts, please refer to the wiki <a href="http://gamcs.andy87.com">here</a>.
*
*/
#ifndef CONFIG_H
#define CONFIG_H
#define INT_BITS @INT_BITS@
#define VERSION @GAMCS_VERSION@
namespace gamcs
{
const char version[16] = "@GAMCS_VERSION@"; /**< the version string */
} // namespace gamcs
#endif