Sha256: 03694e96bfff0ce30f7f9df9a8cef50d6e78e706c9ad3fc5625b3123a6b5d932
Contents?: true
Size: 1.58 KB
Versions: 16
Compression:
Stored size: 1.58 KB
Contents
/** * @file * Declares the operating system family constants. */ #pragma once #include "../export.h" namespace facter { namespace facts { /** * Stores the constant operating system family names. */ struct LIBFACTER_EXPORT os_family { /** * The RedHat family of operating systems. */ constexpr static char const* redhat = "RedHat"; /** * The CoreOS family of operating systems. */ constexpr static char const* coreos = "CoreOS"; /** * The Debian family of operating systems. */ constexpr static char const* debian = "Debian"; /** * The SuSE family of operating systems. */ constexpr static char const* suse = "Suse"; /** * The Solaris family of operating systems. */ constexpr static char const* solaris = "Solaris"; /** * The SunOS family of operating systems. */ constexpr static char const* sunos = "SunOS"; /** * The Gentoo family of operating systems. */ constexpr static char const* gentoo = "Gentoo"; /** * The Archlinux family of operating systems. */ constexpr static char const* archlinux = "Archlinux"; /** * The Mandrake family of operating systems. */ constexpr static char const* mandrake = "Mandrake"; /** * The Windows family of operating systems. */ constexpr static char const* windows = "windows"; }; }} // namespace facter::facts
Version data entries
16 entries across 16 versions & 2 rubygems