The ZX Ecosystem v5.1.0;_GUI_v3.1.0
Loading...
Searching...
No Matches
zxecosystem.h
1
749/* *************************************************************
750*
751* The main and only include that you need in your programs.
752*
753* (Just define the ZXEcosystem base directory for the compiler, then
754* include this one; you can also include just some of the headers
755* listed below for a finer granularity inclusion)
756*
757* (c) Juan Antonio Fernandez Madrigal, 2019-2020
758*
759************************************************************** */
760
761#include "zxecosystem/license.inc"
762
763
765
767#if __cplusplus != 201703L && (!defined(_MSC_VER) || _MSC_VER < 1914)
768 #error C++ standard must be equal or greater than C++17.
769#endif
770
771
773
774#ifndef ZXECOSYSTEM_INCLUDEROOT
775#define ZXECOSYSTEM_INCLUDEROOT
776
777namespace zxeco
778{
779 constexpr unsigned char VER[] = { 4,3,0 };
780}
781
782#endif
783
784
786
787#include "zxecosystem/ancillary.h"
788#include "zxecosystem/desktop.h"
789#include "zxecosystem/base.h"
790#include "zxecosystem/core.h"
791#include "zxecosystem/gui.h"
792
793
The main namespace of the library, that spans across all the zx modules.
Definition: ZXChars.h:31
constexpr unsigned char VER[]
Major, minor and rev. nos.
Definition: zxecosystem.h:779