// aptitudepolicy.cc // // Copyright 2001 Daniel Burrows // // A policy class that allows Recommends to be treated as "always // important", "important for new installs", or "never important". #include "aptitudepolicy.h" #include #ifdef HAVE_CONFIG_H #include #endif #include "apt.h" #include "config_signal.h" #include #include bool aptitudePolicy::IsImportantDep(pkgCache::DepIterator dep) { return pkgPolicy::IsImportantDep(dep); }