summaryrefslogtreecommitdiff
path: root/apt-pkg/aptconfiguration.h
diff options
context:
space:
mode:
Diffstat (limited to 'apt-pkg/aptconfiguration.h')
-rw-r--r--apt-pkg/aptconfiguration.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/apt-pkg/aptconfiguration.h b/apt-pkg/aptconfiguration.h
index 58c925b7f..c1979f3cc 100644
--- a/apt-pkg/aptconfiguration.h
+++ b/apt-pkg/aptconfiguration.h
@@ -131,6 +131,15 @@ namespace Configuration { /*{{{*/
/** \return Check usr is merged or produce error. */
APT_PUBLIC bool checkUsrMerged();
APT_PUBLIC std::string color(std::string const &colorName, std::string const &content = "");
+
+ struct ArchitectureVariant
+ {
+ std::string name;
+ std::string base;
+ std::vector<std::string> cpuflags;
+ std::vector<std::string> supplants{};
+ };
+ APT_HIDDEN std::vector<ArchitectureVariant> getArchitectureVariants(bool cached);
#endif
/*}}}*/