Garmin Fleet Management Controller  2.19.0
XMLTransformer.h
Go to the documentation of this file.
1 /*********************************************************************
2 *
3 * HEADER NAME:
4 * XMLTransformer.h
5 *
6 * Copyright 2013 by Garmin Ltd. or its subsidiaries.
7 *---------------------------------------------------------------------
8 * $NoKeywords$
9 *********************************************************************/
10 #pragma once
11 #include "stdafx.h"
12 #import <msxml6.dll> named_guids
13 
14 using namespace MSXML2;
15 
16 //----------------------------------------------------------------------
21 //----------------------------------------------------------------------
23 {
24 public:
25  XMLTransformer(LPCTSTR stylesheet);
26  virtual ~XMLTransformer(void);
27 
28  BOOL transform(LPCTSTR src, IStream * dst, CMapStringToString & params);
29 
30 protected:
32  CString m_stylesheet;
33 
34 };
CString m_stylesheet
The path to the XSL stylesheet use by this transformer.
Utility class for simplifying XSL transformations.