Parent Directory | Revision Log
Initial revision
1 | #include "HtmlTool.h" |
2 | #include "../System/System.h" |
3 | #include "../System/SystemDefine.h" |
4 | #include "../Array/ObjectArray.h" |
5 | |
6 | HtmlTool::HtmlTool(const Link &link) |
7 | { |
8 | data = new String(link.data); |
9 | } |
10 | |
11 | HtmlTool::~HtmlTool() |
12 | { |
13 | if (data!=null) |
14 | { |
15 | delete data; |
16 | } |
17 | } |
18 |
root@recompile.se | ViewVC Help |
Powered by ViewVC 1.1.26 |