00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
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