// Elmax.h // written by PJ Arends // // Simply include this file in your stdafx.h file // Make sure ElmaxD.lib and Elmax.lib are in your VC/lib folder #pragma once #import <msxml6.dll> #ifdef _DEBUG # pragma comment(lib, "ElmaxD.lib") #else # pragma comment(lib, "Elmax.lib") #endif #if _MSC_VER <= 1400 # define ELMAX_USE_BOOST_REGEX #endif #include "HyperElement.h" #include "NewAttribute.h" #include "NewCData.h" #include "NewComment.h" #include "NewElement.h" #include "RootElement.h"
By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)