diff options
author | Pierre Ossman <ossman@cendio.se> | 2024-11-15 19:16:08 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2025-02-13 11:10:14 +0100 |
commit | 3861097921de71b8a742c1f70bc991b3518f5dd7 (patch) | |
tree | d6aa45c647e408e15fed860e3b1ffb216a7dcfb8 /common/rfb/SSecurityPlain.h | |
parent | d96242158d4c3b3247e55fbe4c968994c0fd9773 (diff) | |
download | tigervnc-3861097921de71b8a742c1f70bc991b3518f5dd7.tar.gz tigervnc-3861097921de71b8a742c1f70bc991b3518f5dd7.zip |
Reduce header #include:s
Make compile times faster by reducing the number of headers included in
other headers.
Diffstat (limited to 'common/rfb/SSecurityPlain.h')
-rw-r--r-- | common/rfb/SSecurityPlain.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/rfb/SSecurityPlain.h b/common/rfb/SSecurityPlain.h index c0ac049b..e8435ffd 100644 --- a/common/rfb/SSecurityPlain.h +++ b/common/rfb/SSecurityPlain.h @@ -20,13 +20,13 @@ #ifndef __RFB_SSECURITYPLAIN_H__ #define __RFB_SSECURITYPLAIN_H__ -#include <rfb/SConnection.h> +#include <rfb/Security.h> #include <rfb/SSecurity.h> -#include <rfb/SSecurityVeNCrypt.h> -#include <rfb/Configuration.h> namespace rfb { + class StringParameter; + class PasswordValidator { public: bool validate(SConnection* sc, const char *username, const char *password) |