Skip to content

Instantly share code, notes, and snippets.

@rgm
Created April 1, 2011 20:58
Show Gist options
  • Save rgm/898844 to your computer and use it in GitHub Desktop.
Save rgm/898844 to your computer and use it in GitHub Desktop.
Boilerplate prefix header for Vectorworks SDK projects
#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