reformat wiith unix2dos & astyle

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1495 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Branch: ni/coolstream
Commit: 7dab3d9e3e
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2011-05-26 (Thu, 26 May 2011)



------------------
This commit was generated by Migit
This commit is contained in:
Jacek Jendrzej
2011-05-26 20:23:16 +00:00
parent 376e883736
commit cf15f33903
14 changed files with 10830 additions and 10576 deletions

View File

@@ -70,16 +70,16 @@
int main(int /*argc*/, char** /*argv*/)
{
time_t starttime, endtime;
SIsectionsSDT sdtset;
time_t starttime, endtime;
SIsectionsSDT sdtset;
starttime=time(NULL);
sdtset.readSections();
endtime=time(NULL);
printf("Sections read: %d\n", sdtset.size());
printf("Time needed: %ds\n", (int)difftime(endtime, starttime));
starttime=time(NULL);
sdtset.readSections();
endtime=time(NULL);
printf("Sections read: %d\n", sdtset.size());
printf("Time needed: %ds\n", (int)difftime(endtime, starttime));
// for_each(sdtset.begin(), sdtset.end(), printSmallSectionHeader());
// for_each(sdtset.begin(), sdtset.end(), printSIsection());
for_each(sdtset.begin(), sdtset.end(), printSIsectionSDT());
return 0;
for_each(sdtset.begin(), sdtset.end(), printSIsectionSDT());
return 0;
}