This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-goldedplus/golded3/golded.h

106 lines
2.8 KiB
C++

// ------------------------------------------------------------------
// GoldED+
// Copyright (C) 1990-1999 Odinn Sorensen
// Copyright (C) 1999-2000 Alexander S. Aganichev
// ------------------------------------------------------------------
// 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.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston,
// MA 02111-1307 USA
// ------------------------------------------------------------------
// $Id$
// ------------------------------------------------------------------
// Main include file. (For precompiled headers)
// ------------------------------------------------------------------
#ifndef __GOLDED_H
#define __GOLDED_H
// ------------------------------------------------------------------
// Standard library headers
#include <csignal>
#include <iostream>
#if defined(__GNUC__)
#if __GNUC__ > 2
#include <sstream>
#endif
#elif defined(_MSC_VER)
#include <sstream>
#endif
#include <iomanip>
// Wrappers for certain mostly DOS/Borland headers
#include <gshare.h>
// ------------------------------------------------------------------
// Goldware Library headers
#include <gdefs.h>
#include <gstrall.h>
#include <gcrcall.h>
#include <gdbgerr.h>
#include <gmemdbg.h>
#include <gdbgtrk.h>
#include <gfile.h>
#include <gfilutil.h>
#include <gftnall.h>
#include <gkbdbase.h>
#include <gkbdcode.h>
#include <glog.h>
#include <gmemall.h>
#include <gmoubase.h>
#include <gmsgattr.h>
#include <gprnall.h>
#include <gsearch.h>
#include <gstrbags.h>
#include <gtimall.h>
#include <gtxtpara.h>
#include <gutlgrp.h>
#include <gutlmisc.h>
#include <gutlmtsk.h>
#include <gutltag.h>
#include <gvidall.h>
#include <gwildmat.h>
#include <gwinall.h>
#include <gwinhelp.h>
#include <gwinpick.h>
#include <gespell.h>
// ------------------------------------------------------------------
// GoldED specific headers
#include <gehelp.h>
#include <gekeys.h>
#include <gelang.h>
#include <gmarea.h>
#include <gecfgg.h>
#include <geqwks.h>
#include <gectnr.h>
#include <geview.h>
#include <geglob.h>
#include <geprot.h>
#include <gemnus.h>
#include <gefn.h>
#include "gehelp.h"
// ------------------------------------------------------------------
#endif
// ------------------------------------------------------------------