qwt_array.h
来自「This a framework to test new ideas in tr」· C头文件 代码 · 共 30 行
H
30 行
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- ***************************** * Qwt Widget Library * Copyright (C) 1997 Josef Wilgen * Copyright (C) 2002 Uwe Rathmann * * This library is free software; you can redistribute it and/or * modify it under the terms of the Qwt License, Version 1.0 *****************************************************************************/// vim: expandtab#ifndef QWT_ARRAY_H#define QWT_ARRAY_H#include "qwt_global.h"/*! \def QwtArray Aliases QArray (Qt-2.x) and QMemArray (Qt-3.x) to QwtArray */#ifdef QWT_NO_MEMARRAY#include <qarray.h>#define QwtArray QArray#else#include <qmemarray.h>#define QwtArray QMemArray#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?