File: version.cpp

package info (click to toggle)
libfilezilla 0.54.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,504 kB
  • sloc: cpp: 31,105; sh: 4,241; makefile: 375; xml: 37
file content (13 lines) | stat: -rw-r--r-- 362 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "libfilezilla/version.hpp"

namespace fz {
std::string get_version_string()
{
	return LIBFILEZILLA_VERSION;
}

std::tuple<int, int, int, int, std::string> get_version()
{
	return std::make_tuple(LIBFILEZILLA_VERSION_MAJOR, LIBFILEZILLA_VERSION_MINOR, LIBFILEZILLA_VERSION_MICRO, LIBFILEZILLA_VERSION_NANO, std::string(LIBFILEZILLA_VERSION_SUFFIX));
}
}