//////////////////////////////////////////////////////////////////////// // This file is part of the mp3car-0.1.1 package // Linux LCD-client for the mp3 server box // http://www.igalaxie.com/ltt/mp3 //////////////////////////////////////////////////////////////////////// // // This program 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 program 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 program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////// // File: acontrol.h ////////////////////////////////////////////////////////////////////////// // Description: Abstract interface of all control drivers. ////////////////////////////////////////////////////////////////////////// // History: created 22.01.2000 ////////////////////////////////////////////////////////////////////////// // Copyright: 2000 Sebastian Poetschke ////////////////////////////////////////////////////////////////////////// #ifndef ACONTROL_H_INCLUDED #define ACONTROL_H_INCLUDED class appBase; class AControl { public: virtual ~AControl() {}; public: virtual bool Initialize(appBase *)=0; }; #endif