aboutsummaryrefslogtreecommitdiffstats
path: root/common/rfb/RawEncoder.h
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2024-06-24 14:35:43 +0200
committerPierre Ossman <ossman@cendio.se>2024-06-24 14:35:43 +0200
commit1b6d5594e34bf3c96e225eab794943dc1ce6b1de (patch)
tree3088799b3e595f2e062e258c515d97970b00402b /common/rfb/RawEncoder.h
parent0e9a00e87cf12087b253e0be214c7a7a045c94de (diff)
parent02c6a1bf7ec18701a0f1a44bec20fc383b8f3565 (diff)
downloadtigervnc-1b6d5594e34bf3c96e225eab794943dc1ce6b1de.tar.gz
tigervnc-1b6d5594e34bf3c96e225eab794943dc1ce6b1de.zip
Merge branch 'c++11' of github.com:CendioOssman/tigervnc
Diffstat (limited to 'common/rfb/RawEncoder.h')
-rw-r--r--common/rfb/RawEncoder.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/rfb/RawEncoder.h b/common/rfb/RawEncoder.h
index 76da4c5b..e191645c 100644
--- a/common/rfb/RawEncoder.h
+++ b/common/rfb/RawEncoder.h
@@ -27,11 +27,11 @@ namespace rfb {
public:
RawEncoder(SConnection* conn);
virtual ~RawEncoder();
- virtual bool isSupported();
- virtual void writeRect(const PixelBuffer* pb, const Palette& palette);
- virtual void writeSolidRect(int width, int height,
- const PixelFormat& pf,
- const uint8_t* colour);
+ bool isSupported() override;
+ void writeRect(const PixelBuffer* pb,
+ const Palette& palette) override;
+ void writeSolidRect(int width, int height, const PixelFormat& pf,
+ const uint8_t* colour) override;
};
}
#endif