#include <config.h>
#include "sbuild-personality.h"
#include <cstring>
#include <cerrno>
#include <utility>
#include <boost/format.hpp>
Include dependency graph for sbuild-personality.cc:
Go to the source code of this file.
Typedefs | |
typedef std::pair< sbuild::personality::error_code, const char * > | emap |
typedef std::pair< std::string, sbuild::personality::type > | pmap |
Variables | |
emap | init_errors [] |
This is a list of the supported error codes. | |
pmap | initial_personalities [] |
This is a list of the supported personalities. |
typedef std::pair<sbuild::personality::error_code,const char *> emap [static] |
Definition at line 40 of file sbuild-personality.cc.
typedef std::pair<std::string,sbuild::personality::type> pmap [static] |
Definition at line 54 of file sbuild-personality.cc.
emap init_errors[] [static] |
Initial value:
{ emap(sbuild::personality::BAD, N_("Personality '%1%' is unknown")), emap(sbuild::personality::SET, N_("Failed to set personality '%1%'")) }
It's used to construct the real error codes map.
Definition at line 46 of file sbuild-personality.cc.
pmap initial_personalities[] [static] |
Initial value:
{ pmap("undefined", 0xffffffff), }
It's used to construct the real personalities map.
Definition at line 60 of file sbuild-personality.cc.