Created
April 1, 2011 20:58
-
-
Save rgm/898844 to your computer and use it in GitHub Desktop.
Boilerplate prefix header for Vectorworks SDK projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifdef _DEBUG | |
#include <GSBug.h> | |
#define _DEBUG_MEMORY | |
#define _DO_TIMING | |
#else | |
#include <GSRELEASE.h> | |
#endif | |
// order matters here; don't re-sort | |
#include <MCCoordTypes.h> | |
#include <MiniCadHookIntf.h> | |
#include <GSESetup.h> | |
#include <MiniCadCallBacks.h> | |
#include <GSString.h> | |
#include <GSTypes.h> | |
#include <MCMatrix.h> | |
#include <RecordHandler.h> | |
#include <ExtendedProperties.h> | |
#include <VWFCLibrary.h> | |
#include <PluginSupport/VWExtensions.h> | |
#include <VWInterfaces.h> | |
using namespace VWFC::Math; | |
using namespace VWFC::VWObjects; | |
using namespace VWFC::Tools; | |
using namespace VWFC::VWUI; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment