blob: 15876c656b1c25f5da2927011aaf0bb2fa4b040d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// apt_undo_group.cc
#include "apt_undo_group.h"
#include "apt.h"
void apt_undo_group::undo()
{
aptitudeDepCache::action_group group(*apt_cache_file, NULL);
undo_group::undo();
}
|