blob: e9f703dc7a5252ee37344709240e395c073cbdc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef APT_PRIVATE_DEPENDS_H
#define APT_PRIVATE_DEPENDS_H
#include <apt-pkg/macros.h>
class CommandLine;
APT_PUBLIC bool Depends(CommandLine &CmdL);
APT_PUBLIC bool RDepends(CommandLine &CmdL);
#endif
|