diff options
Diffstat (limited to 'include/ixion/info.hpp')
-rw-r--r-- | include/ixion/info.hpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/ixion/info.hpp b/include/ixion/info.hpp new file mode 100644 index 0000000..1d7a41f --- /dev/null +++ b/include/ixion/info.hpp @@ -0,0 +1,26 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#ifndef INCLUDED_IXION_INFO_HPP +#define INCLUDED_IXION_INFO_HPP + +#include "env.hpp" + +namespace ixion { + +IXION_DLLPUBLIC int get_version_major(); +IXION_DLLPUBLIC int get_version_minor(); +IXION_DLLPUBLIC int get_version_micro(); + +IXION_DLLPUBLIC int get_api_version_major(); +IXION_DLLPUBLIC int get_api_version_minor(); + +} + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |