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 #include <vector>
00027 #if __GNUC__ >= 3
00028 using std::vector;
00029 #endif
00030
00035 class aflibMemNode {
00036
00037 public:
00038
00039 aflibMemNode();
00040
00041 ~aflibMemNode();
00042
00043 vector<int>&
00044 getData() {return _data;};
00045
00046 void
00047 setChannels(int chan) {_chan = chan;};
00048
00049 int
00050 getChannels() const {return _chan;};
00051
00052 int
00053 getSize() const;
00054
00055 private:
00056
00057 aflibMemNode(const aflibMemNode& op);
00058
00059 const aflibMemNode&
00060 operator=(const aflibMemNode& op);
00061
00062 vector<int> _data;
00063 int _chan;
00064
00065 };
00066
00067
00068 #endif