diff options
-rw-r--r-- | common/rfb/ListConnInfo.h | 4 | ||||
-rw-r--r-- | common/rfb/VNCSConnectionST.cxx | 13 | ||||
-rw-r--r-- | common/rfb/VNCSConnectionST.h | 5 | ||||
-rw-r--r-- | common/rfb/VNCServerST.cxx | 7 | ||||
-rw-r--r-- | common/rfb/VNCServerST.h | 3 |
5 files changed, 19 insertions, 13 deletions
diff --git a/common/rfb/ListConnInfo.h b/common/rfb/ListConnInfo.h index 9e939d1e..c49947da 100644 --- a/common/rfb/ListConnInfo.h +++ b/common/rfb/ListConnInfo.h @@ -20,6 +20,10 @@ #ifndef __RFB_LISTCONNINFO_INCLUDED__ #define __RFB_LISTCONNINFO_INCLUDED__ +#include <list> + +#include <rfb/util.h> + namespace rfb { struct ListConnInfo { diff --git a/common/rfb/VNCSConnectionST.cxx b/common/rfb/VNCSConnectionST.cxx index ef49a28e..cd5d0896 100644 --- a/common/rfb/VNCSConnectionST.cxx +++ b/common/rfb/VNCSConnectionST.cxx @@ -29,15 +29,18 @@ #endif #include <network/TcpSocket.h> -#include <rfb/VNCSConnectionST.h> + +#include <rfb/ComparingUpdateTracker.h> +#include <rfb/Encoder.h> +#include <rfb/KeyRemapper.h> #include <rfb/LogWriter.h> #include <rfb/Security.h> +#include <rfb/ServerCore.h> +#include <rfb/SMsgWriter.h> +#include <rfb/VNCServerST.h> +#include <rfb/VNCSConnectionST.h> #include <rfb/screenTypes.h> #include <rfb/fenceTypes.h> -#include <rfb/ServerCore.h> -#include <rfb/ComparingUpdateTracker.h> -#include <rfb/KeyRemapper.h> -#include <rfb/Encoder.h> #define XK_MISCELLANY #define XK_XKB_KEYS #include <rfb/keysymdef.h> diff --git a/common/rfb/VNCSConnectionST.h b/common/rfb/VNCSConnectionST.h index ccca6744..7022d8a9 100644 --- a/common/rfb/VNCSConnectionST.h +++ b/common/rfb/VNCSConnectionST.h @@ -30,15 +30,14 @@ #include <list> #include <set> +#include <rfb/EncodeManager.h> #include <rfb/SConnection.h> -#include <rfb/SMsgWriter.h> -#include <rfb/VNCServerST.h> #include <rfb/Timer.h> -#include <rfb/EncodeManager.h> struct RTTInfo; namespace rfb { + class VNCServerST; class VNCSConnectionST : public SConnection, public Timer::Callback { diff --git a/common/rfb/VNCServerST.cxx b/common/rfb/VNCServerST.cxx index ec5e962f..65439192 100644 --- a/common/rfb/VNCServerST.cxx +++ b/common/rfb/VNCServerST.cxx @@ -51,12 +51,13 @@ #include <assert.h> #include <stdlib.h> +#include <rfb/ComparingUpdateTracker.h> +#include <rfb/KeyRemapper.h> +#include <rfb/ListConnInfo.h> +#include <rfb/Security.h> #include <rfb/ServerCore.h> #include <rfb/VNCServerST.h> #include <rfb/VNCSConnectionST.h> -#include <rfb/ComparingUpdateTracker.h> -#include <rfb/Security.h> -#include <rfb/KeyRemapper.h> #include <rfb/util.h> #include <rdr/types.h> diff --git a/common/rfb/VNCServerST.h b/common/rfb/VNCServerST.h index 00f77c73..9d252689 100644 --- a/common/rfb/VNCServerST.h +++ b/common/rfb/VNCServerST.h @@ -28,19 +28,18 @@ #include <rfb/SDesktop.h> #include <rfb/VNCServer.h> -#include <rfb/Configuration.h> #include <rfb/LogWriter.h> #include <rfb/Blacklist.h> #include <rfb/Cursor.h> #include <rfb/Timer.h> #include <network/Socket.h> -#include <rfb/ListConnInfo.h> #include <rfb/ScreenSet.h> namespace rfb { class VNCSConnectionST; class ComparingUpdateTracker; + class ListConnInfo; class PixelBuffer; class KeyRemapper; |