| 1 | // Aseprite Code Generator | 
|---|---|
| 2 | // Copyright (c) 2014 David Capello | 
| 3 | // | 
| 4 | // This file is released under the terms of the MIT license. | 
| 5 | // Read LICENSE.txt for more information. | 
| 6 | |
| 7 | #ifndef GEN_PREF_CLASS_H_INCLUDED | 
| 8 | #define GEN_PREF_CLASS_H_INCLUDED | 
| 9 | #pragma once | 
| 10 | |
| 11 | #include <string> | 
| 12 | #include "tinyxml.h" | 
| 13 | |
| 14 | void gen_pref_header(TiXmlDocument* doc, const std::string& inputFn); | 
| 15 | void gen_pref_impl(TiXmlDocument* doc, const std::string& inputFn); | 
| 16 | |
| 17 | #endif | 
| 18 | 
