Mixxx

/home/maxime/Projets/Mixxx/1.10/mixxx/src/engine/engineabstractrecord.h

Go to the documentation of this file.
00001 /***************************************************************************
00002                engineabstractrecord.h  -  Abstract Recording class
00003                              -------------------
00004     copyright            : (C) 2007 by Wesley Stessens
00005  ***************************************************************************/
00006 
00007 /***************************************************************************
00008  *                                                                         *
00009  *   This program is free software; you can redistribute it and/or modify  *
00010  *   it under the terms of the GNU General Public License as published by  *
00011  *   the Free Software Foundation; either version 2 of the License, or     *
00012  *   (at your option) any later version.                                   *
00013  *                                                                         *
00014  ***************************************************************************/
00015 
00016 #ifndef ENGINEABSTRACTRECORD_H
00017 #define ENGINEABSTRACTRECORD_H
00018 
00019 #include "defs.h"
00020 #include "engine/engineobject.h"
00021 
00022 class EngineAbstractRecord : public EngineObject {
00023   public:
00025     virtual void write(unsigned char *header, unsigned char *body,
00026                            int headerLen, int bodyLen) = 0;
00027 };
00028 
00029 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines