/usr/include/codeblocks/sdk_common.h is in codeblocks-dev 16.01+dfsg-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | /*
* This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
* http://www.gnu.org/licenses/lgpl-3.0.html
*/
#ifndef SDK_COMMON_H
#define SDK_COMMON_H
//This file should be included only by sdk.h and sdk_precomp.h
//It includes all the common and necessary header files for precompilation.
/*
* Enable backwards-compatibility for gcc 3.3 and lower.
* Although the compiler does not support precompiled headers, the build might still use them.
* We might significantly reduce the compile time for old compilers, by undefining CB_PRECOMP and thus
* not including every header file twice.
* This also allows us to reliably shortcut some includes for compilers that *do* support precompilation.
*/
#if defined(__GNUC__) && !defined(__APPLE__)
#if ( (__GNUC__ < 3) || ( (__GNUC__ == 3) && (__GNUC_MINOR__ < 4) ) )
#undef CB_PRECOMP
#endif
#endif // __GNUC__ && !__APPLE__
#if defined(NOPCH)
#undef CB_PRECOMP
#endif // NOPCH
#if ( defined(CB_PRECOMP) && !defined(WX_PRECOMP) )
#define WX_PRECOMP
#endif // CB_PRECOMP
// basic wxWidgets headers : this one itself will check for precompiled headers
// and if so will include a list of wx headers, at the bottom we add some more headers
// in the case of precompilation (note : some headers are in both lists)
// so even if NO CB_PRECOMP we can still have WX_PRECOMP turned on in this "wxprec" header
#include <wx/wxprec.h>
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#include "prep.h" // this is deliberately not inside the #ifdef block
#ifdef CB_PRECOMP
// some common wxWidgets headers
#include <wx/app.h>
#include <wx/arrstr.h>
#include <wx/bmpbuttn.h>
#include <wx/button.h>
#include <wx/checkbox.h>
#include <wx/checklst.h>
#include <wx/choice.h>
#include <wx/choicdlg.h>
#include <wx/colordlg.h>
#include <wx/combobox.h>
#include <wx/confbase.h>
#include <wx/datetime.h>
#include <wx/dcclient.h>
#include <wx/dialog.h>
#include <wx/dir.h>
#include <wx/dynarray.h>
#include <wx/event.h>
#include <wx/file.h>
#include <wx/filedlg.h>
#include <wx/filename.h>
#include <wx/font.h>
#include <wx/frame.h>
#include <wx/fs_zip.h>
#include <wx/hashmap.h>
#include <wx/image.h>
#include <wx/imaglist.h>
#include <wx/intl.h>
#include <wx/list.h>
#include <wx/listbox.h>
#include <wx/listctrl.h>
#include <wx/log.h>
#include <wx/menu.h>
#include <wx/menuitem.h>
#include <wx/msgdlg.h>
#include <wx/notebook.h>
#include <wx/panel.h>
#include <wx/print.h>
#include <wx/process.h>
#include <wx/radiobox.h>
#include <wx/radiobut.h>
#include <wx/regex.h>
#include <wx/sizer.h>
#include <wx/slider.h>
#include <wx/socket.h>
#include <wx/spinctrl.h>
#include <wx/splitter.h>
#include <wx/statbmp.h>
#include <wx/stattext.h>
#include <wx/string.h>
#include <wx/textdlg.h>
#include <wx/textctrl.h>
#include <wx/thread.h>
#include <wx/timer.h>
#include <wx/toolbar.h>
#include <wx/treectrl.h>
#include <wx/txtstrm.h>
#include <wx/utils.h>
#include <wx/wfstream.h>
#include <wx/wxscintilla.h>
#include <wx/xrc/xmlres.h>
// basic headers
#include "settings.h"
#include "globals.h"
#include "sdk_events.h"
#include "cbexception.h"
// absolute base classes
#include "logger.h"
#include "editorbase.h"
#include "cbeditor.h"
#include "compileoptionsbase.h"
#include "compiletargetbase.h"
#include "projectbuildtarget.h"
#include "projectfile.h"
#include "cbplugin.h"
#include "cbproject.h"
#include "cbtool.h"
#include "cbworkspace.h"
#include "compilerfactory.h"
#include "compiler.h"
#include "workspaceloader.h"
#include "editorcolourset.h"
#include "pipedprocess.h"
#include "scrollingdialog.h"
#include "cbauibook.h"
// managers
#include "manager.h"
#include "configmanager.h"
#include "editormanager.h"
#include "logmanager.h"
#include "projectmanager.h"
#include "menuitemsmanager.h"
#include "scriptingmanager.h"
#include "toolsmanager.h"
#include "templatemanager.h"
#include "macrosmanager.h"
#include "pluginmanager.h"
#include "personalitymanager.h"
#include "uservarmanager.h"
#include "filemanager.h"
// other base files
#include "xtra_res.h"
#include "safedelete.h"
#include "infowindow.h"
#include "licenses.h"
#endif // CB_PRECOMP
#endif // SDK_COMMON_H
|