summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-12-18 12:04:22 +0200
committerTor Lillqvist <tml@collabora.com>2014-12-18 12:59:30 +0200
commita2e4be6ded508030a6c2a33919cbe8cb504382e0 (patch)
treea1105a8b6b080750bd12d13b2025684733d05c4a /include
parenta6467341d19f30100afdca66574d925a10fdf911 (diff)
The touch module, ByteBufferWrapper, and the libotouch library can go away now
Change-Id: I6f4a6679c263ac81d1cf5c66f18782e857da5ff8
Diffstat (limited to 'include')
-rw-r--r--include/sal/ByteBufferWrapper.hxx40
1 files changed, 0 insertions, 40 deletions
diff --git a/include/sal/ByteBufferWrapper.hxx b/include/sal/ByteBufferWrapper.hxx
deleted file mode 100644
index d90fec5501d3..000000000000
--- a/include/sal/ByteBufferWrapper.hxx
+++ /dev/null
@@ -1,40 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
-#ifndef INCLUDED_SAL_BYTEBUFFERWRAPPER_HXX
-#define INCLUDED_SAL_BYTEBUFFERWRAPPER_HXX
-
-#ifdef ANDROID
-
-#include <jni.h>
-
-#include <sal/types.h>
-
-namespace org { namespace libreoffice { namespace touch {
-
-class ByteBufferWrapper
-{
-private:
- jobject object;
-
-public:
- ByteBufferWrapper(JNIEnv *env, jobject o);
-
- sal_uInt8* pointer();
-
- void operator()(sal_uInt8 *p);
-};
-
-}; }; };
-
-#endif
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */