source: NonGTP/FCollada/FUtils/FUXmlNodeIdPair.h @ 964

Revision 964, 619 bytes checked in by igarcia, 18 years ago (diff)
Line 
1/*
2        Copyright (C) 2005-2006 Feeling Software Inc.
3        MIT License: http://www.opensource.org/licenses/mit-license.php
4*/
5/*
6        Based on the FS Import classes:
7        Copyright (C) 2005-2006 Feeling Software Inc
8        Copyright (C) 2005-2006 Autodesk Media Entertainment
9        MIT License: http://www.opensource.org/licenses/mit-license.php
10*/
11
12#ifndef _FU_XML_NODE_ID_PAIR_H_
13#define _FU_XML_NODE_ID_PAIR_H_
14
15#ifdef HAS_LIBXML
16
17class FUXmlNodeIdPair
18{
19public:
20        FUCrc32::crc32 id;
21        xmlNode* node;
22};
23
24typedef vector<FUXmlNodeIdPair> FUXmlNodeIdPairList;
25
26#endif // HAS_LIBXML
27
28#endif // _FU_XML_NODE_ID_PAIR_H_
29
Note: See TracBrowser for help on using the repository browser.