diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-12-11 10:05:12 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-12-11 10:29:34 +0200 |
commit | 05096c32403eec3198223341b49dc9ae538bc81e (patch) | |
tree | c73225eabd7526c77a91cf8859169c3df9fa29f2 /include | |
parent | 545f87379d1a9afb66bb9e4e5f64243f02729357 (diff) |
displayconnectiondispatch.hxx is private to vcl
Change-Id: I86fab011150be6f151e4fd6a51246f41e86e5833
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/displayconnectiondispatch.hxx | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/include/vcl/displayconnectiondispatch.hxx b/include/vcl/displayconnectiondispatch.hxx deleted file mode 100644 index 1991df9eda8e..000000000000 --- a/include/vcl/displayconnectiondispatch.hxx +++ /dev/null @@ -1,46 +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/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#ifndef INCLUDED_VCL_DISPLAYCONNECTIONDISPATCH_HXX -#define INCLUDED_VCL_DISPLAYCONNECTIONDISPATCH_HXX - -#include <sal/config.h> - -#include <com/sun/star/awt/XDisplayConnection.hpp> -#include <cppuhelper/implbase1.hxx> - -namespace vcl { - -class DisplayConnectionDispatch: - public cppu::WeakImplHelper1< com::sun::star::awt::XDisplayConnection > -{ -public: - virtual bool dispatchEvent(void * pData, int nBytes) = 0; - - virtual bool dispatchErrorEvent(void * pData, int nBytes) = 0; - -protected: - virtual ~DisplayConnectionDispatch() {} -}; - -} - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |