mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
28 lines
1.1 KiB
C
28 lines
1.1 KiB
C
/***************************************************************************
|
|
container.h
|
|
-----------
|
|
begin : 2018
|
|
copyright : QUCS Developers
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
// provide a compatibility layer between different qt releases for qucs.
|
|
//
|
|
// collect all QT_VERSION dependent code here.
|
|
|
|
#ifndef QUCS_CONTAINER_H
|
|
#define QUCS_CONTAINER_H
|
|
|
|
#include "q3ptrlist.h"
|
|
|
|
#endif
|
|
|
|
//vim:ts=8:sw=4:et
|