sciplot  0.3.1
A modern C++ plotting library powered by gnuplot
sciplot.hpp
1 // sciplot - a modern C++ scientific plotting library powered by gnuplot
2 // https://github.com/sciplot/sciplot
3 //
4 // Licensed under the MIT License <http://opensource.org/licenses/MIT>.
5 //
6 // Copyright (c) 2018-2022 Allan Leal, Bim Overbohm
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining a copy
9 // of this software and associated documentation files (the "Software"), to deal
10 // in the Software without restriction, including without limitation the rights
11 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 // copies of the Software, and to permit persons to whom the Software is
13 // furnished to do so, subject to the following conditions:
14 //
15 // The above copyright notice and this permission notice shall be included in all
16 // copies or substantial portions of the Software.
17 //
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 // SOFTWARE.
25 
26 #pragma once
27 
28 // We check if windows.h. is already included, as this might break compilation. See: https://sciplot.github.io/known_issues/
29 #ifdef _WINDOWS_
30 #ifdef _MSC_VER
31 #pragma message(__FILE__ "(): warning: You might run into compiler errors if windows.h is included before sciplot.hpp! See: https://sciplot.github.io/known_issues/")
32 #else
33 #warning You might run into compiler errors if windows.h is included before sciplot.hpp! See: https://sciplot.github.io/known_issues/
34 #endif // _MSC_VER
35 #endif // _WINDOWS_
36 
37 // sciplot includes
38 #include <sciplot/Canvas.hpp>
39 #include <sciplot/Constants.hpp>
40 #include <sciplot/Default.hpp>
41 #include <sciplot/Enums.hpp>
42 #include <sciplot/Figure.hpp>
43 #include <sciplot/Palettes.hpp>
44 #include <sciplot/Plot.hpp>
45 #include <sciplot/Plot2D.hpp>
46 #include <sciplot/Plot3D.hpp>
47 #include <sciplot/StringOrDouble.hpp>
48 #include <sciplot/Utils.hpp>
49 #include <sciplot/Vec.hpp>