aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer/FLTKPixelBuffer.h
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2017-09-12 12:07:21 +0200
committerPierre Ossman <ossman@cendio.se>2017-09-12 12:07:21 +0200
commit5951df24167ca0d812ef2be743b2ce9f46c89bdc (patch)
tree835824f8b5b26f4cb1fb2bd2dac8f6d04e885212 /vncviewer/FLTKPixelBuffer.h
parent894f2c519717e23ee1dfa110a7d9226d49c6d2fa (diff)
downloadtigervnc-5951df24167ca0d812ef2be743b2ce9f46c89bdc.tar.gz
tigervnc-5951df24167ca0d812ef2be743b2ce9f46c89bdc.zip
Remove unused FLTKPixelBuffer files
These are unused since 403ac27d, but the files were never removed.
Diffstat (limited to 'vncviewer/FLTKPixelBuffer.h')
-rw-r--r--vncviewer/FLTKPixelBuffer.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/vncviewer/FLTKPixelBuffer.h b/vncviewer/FLTKPixelBuffer.h
deleted file mode 100644
index 148c6264..00000000
--- a/vncviewer/FLTKPixelBuffer.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/* Copyright 2011-2014 Pierre Ossman for Cendio AB
- *
- * This is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This software 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. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this software; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
- * USA.
- */
-
-#ifndef __FLTKPIXELBUFFER_H__
-#define __FLTKPIXELBUFFER_H__
-
-#include "PlatformPixelBuffer.h"
-
-class FLTKPixelBuffer: public PlatformPixelBuffer {
-public:
- FLTKPixelBuffer(int width, int height);
- ~FLTKPixelBuffer();
-
- virtual void draw(int src_x, int src_y, int x, int y, int w, int h);
-};
-
-
-#endif