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="5.0.0";
17 
43 #ifdef SRCDIR
44  // Using CMake.
45 #define SP_STRINGIFY(s) #s
46 #define SP_EVAL(s) SP_STRINGIFY(s)
47 #define srcPath(s) (SP_EVAL(SRCDIR)"/" s)
48 #define stringSrcPath(s) (SP_EVAL(SRCDIR)"/"+std::string(s))
49 #else
50  // Not using CMake. Created by Windows wizard...
51 #define srcPath(s) (s)
52 #define stringSrcPath(s) (s)
53 #endif
54 
56 }
const std::string VERSION
version of libraries.
Definition: Base.h:16
Imagine++ namespace.
Definition: Array.h:7