blob: da1b668af0cc85b18fac6b617ca5a6f7c3c95a4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <iostream>
using namespace std;
#include <ept/apt/apt.h>
int main(int argc, char* argv[])
{
typedef ept::apt::Apt Apt;
Apt apt;
for (Apt::Iterator it = apt.begin(); it != apt.end(); ++it)
{
cout << (*it) << endl;
}
}
|