[cosmetics] update date in GPL header
[vuplus_xbmc] / xbmc / guilib / IMsgTargetCallback.h
1 /*!
2 \file IMsgTargetCallback.h
3 \brief
4 */
5
6 #ifndef GUILIB_IMSGTARGETCALLBACK
7 #define GUILIB_IMSGTARGETCALLBACK
8
9 #pragma once
10
11 /*
12  *      Copyright (C) 2005-2013 Team XBMC
13  *      http://www.xbmc.org
14  *
15  *  This Program is free software; you can redistribute it and/or modify
16  *  it under the terms of the GNU General Public License as published by
17  *  the Free Software Foundation; either version 2, or (at your option)
18  *  any later version.
19  *
20  *  This Program is distributed in the hope that it will be useful,
21  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
22  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  *  GNU General Public License for more details.
24  *
25  *  You should have received a copy of the GNU General Public License
26  *  along with XBMC; see the file COPYING.  If not, see
27  *  <http://www.gnu.org/licenses/>.
28  *
29  */
30
31 #include "GUIMessage.h"
32
33 /*!
34  \ingroup winman
35  \brief
36  */
37 class IMsgTargetCallback
38 {
39 public:
40   virtual bool OnMessage(CGUIMessage& message) = 0;
41   virtual ~IMsgTargetCallback() {}
42 };
43
44 #endif