]> git.lyx.org Git - lyx.git/blob - src/client/pch.h
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / client / pch.h
1 #include <config.h>
2
3 #include "debug.h"
4
5 #include <boost/assert.hpp>
6 #include <boost/filesystem/operations.hpp>
7 #include <boost/lexical_cast.hpp>
8 #include <boost/scoped_ptr.hpp>
9
10 #include <fcntl.h>
11 #ifdef HAVE_UNISTD_H
12 # include <unistd.h>
13 #endif
14
15 #ifdef HAVE_SYS_SELECT_H
16 # include <sys/select.h>
17 #endif
18 #ifdef HAVE_SYS_SOCKET_H
19 # include <sys/socket.h>
20 #endif
21 #include <sys/types.h>
22 #include <sys/un.h>
23
24 #include <cerrno>
25 #include <cstdlib>
26 #include <exception>
27 #include <iomanip>
28 #include <iostream>
29 #include <map>
30 #include <string>
31 #include <vector>