diff options
Diffstat (limited to 'tools/ept-cat.cpp')
-rw-r--r-- | tools/ept-cat.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/ept-cat.cpp b/tools/ept-cat.cpp new file mode 100644 index 0000000..d5af2f6 --- /dev/null +++ b/tools/ept-cat.cpp @@ -0,0 +1,16 @@ +#include <ept/apt/apt.h> +#include <ept/apt/apt.h> + +int summary = 0; + +int main( int argc, char **argv ) { + using namespace ept::apt; + using namespace std; + + Apt db; + + for (Apt::record_iterator i = db.recordBegin(); i != db.recordEnd(); ++i) + cout << *i << endl; + + return 0; +} |