/* * frames.h * * Created on: 2021Äê11ÔÂ2ÈÕ * Author: graydon */ #ifndef FRAMES_H_ #define FRAMES_H_ #include #include "frame.hpp" class Frames { private: std::vector dataFrame; public: Frames(); Frames(int num); ~Frames(); Frame* AllocFrame(); Frame* GetFrame(int channel); }; #endif /* FRAMES_H_ */