~mixxxdevelopers/mixxx/features_library_scanner

« back to all changes in this revision

Viewing changes to mixxx/mixxx/engineobject.h

  • Committer: tuehaste
  • Date: 2002-02-26 11:12:07 UTC
  • Revision ID: vcs-imports@canonical.com-20020226111207-5rly26cj9gdd19ba
Initial revision

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          engineobject.h  -  description
 
3
                             -------------------
 
4
    begin                : Wed Feb 20 2002
 
5
    copyright            : (C) 2002 by Tue and Ken Haste Andersen
 
6
    email                : 
 
7
 ***************************************************************************/
 
8
 
 
9
/***************************************************************************
 
10
 *                                                                         *
 
11
 *   This program is free software; you can redistribute it and/or modify  *
 
12
 *   it under the terms of the GNU General Public License as published by  *
 
13
 *   the Free Software Foundation; either version 2 of the License, or     *
 
14
 *   (at your option) any later version.                                   *
 
15
 *                                                                         *
 
16
 ***************************************************************************/
 
17
 
 
18
#ifndef ENGINEOBJECT_H
 
19
#define ENGINEOBJECT_H
 
20
 
 
21
#include <qobject.h>
 
22
#include "defs.h"
 
23
 
 
24
/**
 
25
  *@author Tue and Ken Haste Andersen
 
26
  */
 
27
 
 
28
class EngineObject : public QObject  {
 
29
  Q_OBJECT
 
30
public: 
 
31
  EngineObject();
 
32
  ~EngineObject();
 
33
  virtual void process(CSAMPLE *, CSAMPLE *, int) = 0;
 
34
};
 
35
 
 
36
#endif