Chris@1664: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */
Chris@1664: 
Chris@1664: /*
Chris@1664:     Sonic Visualiser
Chris@1664:     An audio file viewer and annotation editor.
Chris@1664:     Centre for Digital Music, Queen Mary, University of London.
Chris@1664:     
Chris@1664:     This program is free software; you can redistribute it and/or
Chris@1664:     modify it under the terms of the GNU General Public License as
Chris@1664:     published by the Free Software Foundation; either version 2 of the
Chris@1664:     License, or (at your option) any later version.  See the file
Chris@1664:     COPYING included with this distribution for more information.
Chris@1664: */
Chris@1664: 
Chris@1664: #ifndef SV_OSC_MESSAGE_CALLBACK_H
Chris@1664: #define SV_OSC_MESSAGE_CALLBACK_H
Chris@1664: 
Chris@1664: class OSCMessage;
Chris@1664: 
Chris@1664: class OSCMessageCallback {
Chris@1664: public:
Chris@1664:     virtual void handleOSCMessage(const OSCMessage &) = 0;
Chris@1664: };
Chris@1664: 
Chris@1664: #endif