Imagine++
Base.h
1 // ===========================================================================
2 // Imagine++ Libraries
3 // Copyright (C) Imagine
4 // For detailed information: http://imagine.enpc.fr/software
5 // ===========================================================================
6 
7 namespace Imagine {
10 
16  const std::string VERSION="6.0.0";
17 
35 #ifdef SRCDIR
36  // Using CMake.
37 #define SP_STRINGIFY(s) #s
38 #define SP_EVAL(s) SP_STRINGIFY(s)
39 #define srcPath(s) (SP_EVAL(SRCDIR)"/"+std::string(s))
40 #define stringSrcPath(s) srcPath(s)
41 #else
42  // Not using CMake. Created by Windows wizard...
43 #define srcPath(s) (s)
44 #define stringSrcPath(s) (s)
45 #endif
46 
48 }
const std::string VERSION
version of libraries.
Definition: Base.h:16
Imagine++ namespace.
Definition: Array.h:7