Trying to sort out our interop nicely.
2 // Copyright (C) 2014-2015 Stéphane Lenclud.
4 // This file is part of MiniDisplay.
6 // MiniDisplay is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
11 // MiniDisplay is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with MiniDisplay. If not, see <http://www.gnu.org/licenses/>.
21 #include "FutabaVfd.h"
26 #ifdef DEBUG_FRAME_DIFF
28 #include <QTextStream>
36 FutabaVfdCommand::FutabaVfdCommand():/*iBuffer(NULL),*/iSize(0),iMaxSize(0)
40 FutabaVfdCommand::~FutabaVfdCommand()
49 void FutabaVfdCommand::Reset()
51 memset(iReports,0,sizeof(iReports));
60 void FutabaVfdCommand::Create(int aMaxSize)
62 iBuffer=new unsigned char[aMaxSize];
75 void FutabaVfdCommand::Delete()
86 // class FutabaDisplay
89 void FutabaGraphicDisplay::Close()