| SOL9 2.0 Class: XSLDOMDocument |
| SOL9 C++ Class Library | SOL9 Samples | SOL9 Tutorial | SOL9 FAQ | SOL9 ClassTree |
/*
* XSLDOMDocument.h
* Copyright (c) 2011 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
// SOL9
// 2011/02/06
#pragma once
#include <sol/xml/FreeThreadDOMDocument.h>
namespace SOL {
class XSLDOMDocument : public FreeThreadDOMDocument {
public:
XSLDOMDocument()
:FreeThreadDOMDocument()
{
}
};
}
|