File: pkglist.cpp

package info (click to toggle)
libept 1.0.4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 14,296 kB
  • ctags: 776
  • sloc: cpp: 4,359; sh: 35; makefile: 17
file content (16 lines) | stat: -rw-r--r-- 237 bytes parent folder | download | duplicates (6)
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;
	}
}