/usr/include/codeblocks/importers_globals.h is in codeblocks-dev 10.05-2.
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 | /*
* 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 IMPORTERS_GLOBALS_H
#define IMPORTERS_GLOBALS_H
#include "settings.h"
/**
* This namespace holds some global flags for project/workspace importers
* to inter-communicate.\n
* Basically, workspace importers set/unset these flags so that project
* importers know how to behave.
*
* To explain this a bit further, imagine a MS Visual Studio solution (workspace)
* file containing 50 projects (yes, I have in mind one!).
* Without this class, for each project being imported, the user would be asked
* which compiler to use (one dialog) and which targets to import (another dialog).
* Imagine the user's frustration having to answer to 100 dialogs (50 x 2)!
*
* Using these flags, the workspace importer can notify the project importer
* what to do, without asking the user each and every import.
*
* After the workspace importer is done, it should call the ResetDefaults() function
* to revert everything to defaults.
*/
namespace ImportersGlobals
{
// reset all flags to defaults
extern DLLIMPORT void ResetDefaults();
// ask which compiler to use for the imported project?
extern DLLIMPORT bool UseDefaultCompiler;
// ask which targets to import?
extern DLLIMPORT bool ImportAllTargets;
};
#endif // IMPORTERS_GLOBALS_H
|