fix msvc6 template warning
[reactos.git] / reactos / tools / rbuild / cdfile.cpp
1 /*
2 * Copyright (C) 2005 Casper S. Hornstrup
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18 #include "pch.h"
19 #include <assert.h>
20
21 #include "rbuild.h"
22
23 using std::string;
24
25 CDFile::CDFile ( const Project& project_,
26 const XMLElement& cdfileNode,
27 const string& path )
28 : project ( project_ ),
29 node ( cdfileNode )
30 {
31 const XMLAttribute* att = node.GetAttribute ( "base", false );
32 if ( att != NULL )
33 base = att->value;
34 else
35 base = "";
36
37 att = node.GetAttribute ( "nameoncd", false );
38 if ( att != NULL )
39 nameoncd = att->value;
40 else
41 nameoncd = node.value;
42 name = node.value;
43 this->path = path;
44 }
45
46 CDFile::~CDFile ()
47 {
48 }
49
50 string
51 CDFile::GetPath () const
52 {
53 return path + SSEP + name;
54 }
55
56 void
57 CDFile::ProcessXML()
58 {
59 }