File: CommonIncludes.hpp

package info (click to toggle)
libevdevplus 0.1.1-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 132 kB
  • sloc: cpp: 464; makefile: 13
file content (39 lines) | stat: -rw-r--r-- 894 bytes parent folder | download | duplicates (2)
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
39
/*
    This file is part of libevdevPlus.
    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 LIBEVDEVPLUS_COMMONINCLUDES_HPP
#define LIBEVDEVPLUS_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 //LIBEVDEVPLUS_COMMONINCLUDES_HPP