| SOL9 Sample: IpStatistics |
/*
* IpStatistics.cpp
* Copyright (c) 2015 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
// SOL9
// 2009/09/04
#include <sol/net/IpStatistics.h>
void _tmain(int arc, TCHAR** argv)
{
try {
IpStatistics table;
table.getTable();
table.display();
} catch (...) {
printf("Exception\n");
}
}