1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
/*
This file is part of libuInputPlus.
Copyright (C) 2018 YukiWorkshop
This program is free software: you can redistribute it and/or modify
it under the terms of the MIT License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
#ifndef LIBUINPUTPLUS_COMMONINCLUDES_HPP
#define LIBUINPUTPLUS_COMMONINCLUDES_HPP
#include <set>
#include <unordered_set>
#include <unordered_map>
#include <string>
#include <vector>
#include <iostream>
#include <exception>
#include <system_error>
#include <initializer_list>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cinttypes>
#include <fcntl.h>
#include <unistd.h>
#include <sys/time.h>
#include <linux/uinput.h>
#endif //LIBUINPUTPLUS_COMMONINCLUDES_HPP
|