prcgwave.hpp
来自「gspiceui电子CAD仿真程序.用于电路参数模拟仿真」· HPP 代码 · 共 73 行
HPP
73 行
//*****************************************************************************// PrcGWave.hpp *// -------------- *// Description : Provides a programatic interface to the utility gwave which *// is a wave form viewer. The term plotter is used since the *// user can view the raw simulation data but this class plots *// this data graphically on the display. *// Started : 29/03/2004 *// Last Update : 07/06/2005 *// Copyright : (C) 2004 by MSWaters *// Email : M.Waters@bom.gov.au *//*****************************************************************************//*****************************************************************************// *// This program is free software; you can redistribute it and/or modify *// it under the terms of the GNU General Public License as published by *// the Free Software Foundation; either version 2 of the License, or *// (at your option) any later version. *// *//*****************************************************************************#ifndef PRCGWAVE_HPP#define PRCGWAVE_HPP// System Includes#include <iostream>// wxWindows Includes#include <wx/wx.h>#include <wx/filename.h>#include <wx/process.h>#include <wx/textfile.h>#include <wx/wxchar.h>// Application Includes#include "PrcBase.hpp"// Local Constant Declarations//*****************************************************************************class PrcGWave : public PrcBase{ private: wxFileName m_oFnmResults; // The full simulator results file name // Functions for reformatting the results file for input to the viewer bool bFormatFile ( void ); bool bFormatLine ( wxString & rosLine ); bool bFormatField( wxString & rosField ); public: PrcGWave( void ); ~PrcGWave( ); bool bSetResults( const wxString & rosFileName ); const wxFileName & roGetResults( void ) { return( m_oFnmResults ); } bool bExec( void );};//*****************************************************************************#endif // PRCGWAVE_HPP
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?