|
Revision 446, 1.2 kB
(checked in by ppalmers, 3 years ago)
|
- add some file templates and a script to instantiate them
|
| Line | |
|---|
| 1 |
/* |
|---|
| 2 |
* Copyright (C) 2007 by Daniel Wagner |
|---|
| 3 |
* Copyright (C) 2007 by Pieter Palmers |
|---|
| 4 |
* Copyright (C) 2007 by Jonathan Woithe |
|---|
| 5 |
* |
|---|
| 6 |
* This file is part of FFADO |
|---|
| 7 |
* FFADO = Free Firewire (pro-)audio drivers for linux |
|---|
| 8 |
* |
|---|
| 9 |
* FFADO is based upon FreeBoB |
|---|
| 10 |
* |
|---|
| 11 |
* This library is free software; you can redistribute it and/or |
|---|
| 12 |
* modify it under the terms of the GNU Lesser General Public |
|---|
| 13 |
* License version 2.1, as published by the Free Software Foundation; |
|---|
| 14 |
* |
|---|
| 15 |
* This library is distributed in the hope that it will be useful, |
|---|
| 16 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 17 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 18 |
* Lesser General Public License for more details. |
|---|
| 19 |
* |
|---|
| 20 |
* You should have received a copy of the GNU Lesser General Public |
|---|
| 21 |
* License along with this library; if not, write to the Free Software |
|---|
| 22 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
|---|
| 23 |
* MA 02110-1301 USA |
|---|
| 24 |
*/ |
|---|
| 25 |
|
|---|
| 26 |
#ifndef __FFAD0_0__ |
|---|
| 27 |
#define __FFADO_0__ |
|---|
| 28 |
|
|---|
| 29 |
#include "src/debugmodule/debugmodule.h" |
|---|
| 30 |
|
|---|
| 31 |
namespace YYY { |
|---|
| 32 |
|
|---|
| 33 |
class XXX { |
|---|
| 34 |
|
|---|
| 35 |
public: |
|---|
| 36 |
|
|---|
| 37 |
XXX(); |
|---|
| 38 |
virtual ~XXX(); |
|---|
| 39 |
|
|---|
| 40 |
protected: |
|---|
| 41 |
DECLARE_DEBUG_MODULE; |
|---|
| 42 |
|
|---|
| 43 |
}; |
|---|
| 44 |
|
|---|
| 45 |
} // end of namespace YYY |
|---|
| 46 |
|
|---|
| 47 |
#endif /* __FFADO_0__ */ |
|---|
| 48 |
|
|---|
| 49 |
|
|---|