]> Dogcows Code - chaz/yoink/blob - src/stlplus/portability/build.hpp
cleanup stlplus files
[chaz/yoink] / src / stlplus / portability / build.hpp
1 #ifndef STLPLUS_BUILD
2 #define STLPLUS_BUILD
3 ////////////////////////////////////////////////////////////////////////////////
4
5 // Author: Andy Rushton
6 // Copyright: (c) Southampton University 1999-2004
7 // (c) Andy Rushton 2004-2009
8 // License: BSD License, see ../docs/license.html
9
10 // Provides a printable representation of the build characteristics in the form:
11
12 // version, platform, compiler, variant
13
14 // Where
15 // version is the version of STLplus
16 // platform is the target operating system
17 // compiler is the compilation system and version that the function was compiled with
18 // variant is the kind of build - debug or release
19
20 // Example:
21 // STLplus version 3.0, Generic Unix, gcc v3.4, debug
22
23 ////////////////////////////////////////////////////////////////////////////////
24 #include "portability_fixes.hpp"
25 #include <string>
26
27 namespace stlplus
28 {
29
30 std::string build(void);
31
32 }
33 ////////////////////////////////////////////////////////////////////////////////
34 #endif
This page took 0.034664 seconds and 4 git commands to generate.