diff options
author | David Robillard <d@drobilla.net> | 2007-02-11 01:26:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-02-11 01:26:07 +0000 |
commit | a5fc27d5d781b3b0e53f23c566c02522e910507c (patch) | |
tree | b63a9d8358b64078c68e025f977d77c121fdc7c7 /src/libs/engine/Maid.cpp | |
parent | 2f652fcefc7e7bfe3b9c3b56172a2d69ee604cbf (diff) | |
download | ingen-a5fc27d5d781b3b0e53f23c566c02522e910507c.tar.gz ingen-a5fc27d5d781b3b0e53f23c566c02522e910507c.tar.bz2 ingen-a5fc27d5d781b3b0e53f23c566c02522e910507c.zip |
Moved Maid from Ingen to Raul.
Working machina MIDI learn, fixes, etc, etc.
git-svn-id: http://svn.drobilla.net/lad/ingen@302 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/Maid.cpp')
-rw-r--r-- | src/libs/engine/Maid.cpp | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/src/libs/engine/Maid.cpp b/src/libs/engine/Maid.cpp deleted file mode 100644 index d745e587..00000000 --- a/src/libs/engine/Maid.cpp +++ /dev/null @@ -1,48 +0,0 @@ -/* This file is part of Ingen. - * Copyright (C) 2007 Dave Robillard <http://drobilla.net> - * - * Ingen 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. - * - * Ingen 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 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., - * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#include "Maid.h" -#include <raul/Deletable.h> - - -Maid::Maid(size_t size) -: _objects(size) -{ -} - - -Maid::~Maid() -{ - cleanup(); -} - - -/** Free all the objects in the queue (passed by push()). - */ -void -Maid::cleanup() -{ - Raul::Deletable* obj = NULL; - - while (!_objects.empty()) { - obj = _objects.front(); - _objects.pop(); - delete obj; - } -} - - |