Mercurial > minori
view dep/animia/src/fd.cc @ 147:6fdf0632c003
track: use a bit of a more sane way to manage recognition
it also works with the new animia API
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Tue, 14 Nov 2023 13:19:40 -0500 |
parents | d8a61e7e2a36 |
children | ffa535b6d630 |
line wrap: on
line source
#include "animia/fd.h" #ifdef ANIMIA_ON_WIN32 # include "animia/fd/win32.h" #elif defined(ANIMIA_ON_LINUX) # include "animia/fd/linux.h" #elif defined(ANIMIA_ON_UNIX) # include "animia/fd/bsd.h" #endif namespace animia::internal { /* really stupid hack to get fd to point to the right thing */ #ifdef ANIMIA_ON_WIN32 win32::Win32FdTools os_fd; #elif defined(ANIMIA_ON_LINUX) linux::LinuxFdTools os_fd; #elif defined(ANIMIA_ON_UNIX) unix::UnixFdTools os_fd; #else BaseFdTools os_fd; #endif BaseFdTools& fd = os_fd; }