Orcus
info.hpp
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 */
7
8#ifndef INCLUDED_ORCUS_INFO_HPP
9
10#include "orcus/env.hpp"
11
12namespace orcus {
13
14ORCUS_DLLPUBLIC int get_version_major();
15ORCUS_DLLPUBLIC int get_version_minor();
16ORCUS_DLLPUBLIC int get_version_micro();
17
18}
19
20#endif
21
22/* vim:set shiftwidth=4 softtabstop=4 expandtab: */