]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/aptconfiguration.h
merged from lp:~donkult/apt/sid
[apt.git] / apt-pkg / aptconfiguration.h
index f2f04a39bd840a9a6db6bfd28f9a935105593a81..dd339d841434ab22b483481dc4bb0d30b3aca7c4 100644 (file)
@@ -64,7 +64,23 @@ public:                                                                      /*{{{*/
         *  \return a vector of (all) Language Codes in the prefered usage order
         */
        std::vector<std::string> static const getLanguages(bool const &All = false,
-                       bool const &Cached = true, char const * const Locale = 0);
+                       bool const &Cached = true, char const ** const Locale = 0);
+
+       /** \brief Returns a vector of Architectures we support
+        *
+        *  \param Cached saves the result so we need to calculated it only once
+        *                this parameter should ony be used for testing purposes.
+        *
+        *  \return a vector of Architectures in prefered order
+        */
+       std::vector<std::string> static const getArchitectures(bool const &Cached = true);
+
+       /** \brief Are we interested in the given Architecture?
+        *
+        *  \param Arch we want to check
+        *  \return true if we are interested, false otherwise
+        */
+       bool static const checkArchitecture(std::string const &Arch);
 
                                                                        /*}}}*/
 };