Main Page   Class Hierarchy   Compound List   File List   Compound Members   File Members  

aflibMemNode.h

Go to the documentation of this file.
00001 /*
00002  * Copyright: (C) 2000-2001 Bruce W. Forsberg
00003  *
00004  *   This library is free software; you can redistribute it and/or
00005  *   modify it under the terms of the GNU Lesser General Public
00006  *   License as published by the Free Software Foundation; either
00007  *   version 2.1 of the License, or any later version.
00008  *
00009  *   This library is distributed in the hope that it will be useful,
00010  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012  *   Lesser General Public License for more details.
00013  *
00014  *   You should have received a copy of the GNU Lesser General Public
00015  *   License along with this library; if not, write to the Free Software
00016  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
00017  *
00018  *   Bruce Forsberg  forsberg@tns.net
00019  *
00020  */
00021 
00022 
00023 #ifndef _AFLIBMEMNODE_H_
00024 #define _AFLIBMEMNODE_H_
00025 
00026 
00027 #ifdef HAVE_CONFIG_H
00028 #include <config.h>
00029 #endif
00030 
00031 #include <vector>
00032 using std::vector;
00033 
00038 class aflibMemNode {
00039 
00040 public:
00041 
00042    aflibMemNode();
00043 
00044    ~aflibMemNode();
00045 
00046    vector<int>&
00047    getData() {return _data;};
00048 
00049    void
00050    setChannels(int chan) {_chan = chan;};
00051 
00052    int
00053    getChannels() const {return _chan;};
00054 
00055    int
00056    getSize() const;
00057 
00058 private:
00059 
00060    aflibMemNode(const aflibMemNode& op);
00061  
00062    const aflibMemNode&
00063    operator=(const aflibMemNode& op);
00064 
00065 vector<int> _data;
00066 int         _chan;
00067 
00068 };
00069 
00070 
00071 #endif

Generated on Wed May 8 20:51:06 2002 for Open Source Audio Library Project by doxygen1.2.15