103 lines
2.8 KiB
C++
103 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
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
// Compiler dependencies
|
|
|
|
#include <gcmpall.h>
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
// Standard library headers
|
|
|
|
#include <gstrall.h>
|
|
#include <csignal>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <iomanip>
|
|
// Wrappers for certain mostly DOS/Borland headers
|
|
#include <gshare.h>
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
// Goldware Library headers
|
|
|
|
#include <gdefs.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 <gstrarr.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 <gedacfg.h>
|
|
#include <gespell.h>
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
// GoldED specific headers
|
|
|
|
#include <geall.h>
|
|
#include <geqwks.h>
|
|
#include <gectnr.h>
|
|
#include <geview.h>
|
|
#include <geglob.h>
|
|
#include <geprot.h>
|
|
#include <gemnus.h>
|
|
#include <gefn.h>
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
#endif
|
|
|
|
// ------------------------------------------------------------------
|