1 |
#include "../../String/String.h"
|
2 |
#include "../../String/StringInput.h"
|
3 |
#include "../../String/ExtProperties.h"
|
4 |
#include "../../System/System.h"
|
5 |
#include "StringTest8.h"
|
6 |
#include "../../System/SystemDefine.h"
|
7 |
|
8 |
|
9 |
StringTest8::StringTest8(){}
|
10 |
StringTest8::~StringTest8(){}
|
11 |
|
12 |
void StringTest8::run()
|
13 |
{
|
14 |
ExtProperties *extProperties = new ExtProperties();
|
15 |
|
16 |
extProperties->readFile("data/rowTest.txt");
|
17 |
|
18 |
System::println(extProperties->getData(0,0));
|
19 |
|
20 |
delete extProperties;
|
21 |
|
22 |
|
23 |
} |