libzypp 17.31.23
DefaultLoadSystem.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#ifndef ZYPP_MISC_DEFAULTLOADSYSTEM_H
13#define ZYPP_MISC_DEFAULTLOADSYSTEM_H
14
15#include <iosfwd>
16
17#include <zypp/Pathname.h>
18#include <zypp/base/Flags.h>
19
21namespace zypp
22{
24 namespace misc
25 {
26
34 {
35 LS_READONLY = (1 << 0),
36 LS_NOREFRESH = (1 << 1),
37 LS_NOREPOS = (1 << 2),
38 };
39
42
52 void defaultLoadSystem( const Pathname & sysRoot_r = "/", LoadSystemFlags flags_r = LoadSystemFlags() );
53
55 inline void defaultLoadSystem( LoadSystemFlags flags_r )
56 { defaultLoadSystem( "/", flags_r ); }
57
59 } // namespace misc
62} // namespace zypp
64#endif // ZYPP_MISC_DEFAULTLOADSYSTEM_H
LoadSystemFlag
Bits for tuning defaultLoadSystem.
@ LS_READONLY
// Create readonly ZYpp instance.
@ LS_NOREFRESH
// Don't refresh existing repos.
@ LS_NOREPOS
// Don't loag existing repos (just Target).
void defaultLoadSystem(const Pathname &sysRoot_r, LoadSystemFlags flags_r)
Create the ZYpp instance and load target and enabled repositories.
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2
#define ZYPP_DECLARE_FLAGS_AND_OPERATORS(Name, Enum)
Definition: Flags.h:189