]> git.tdb.fi Git - builder.git/blobdiff - source/architecture.h
Move the bpk files into a subdirectory and install them
[builder.git] / source / architecture.h
index 2d7ca5f18c8f51017b82ecebc96f3b15c730d321..cec397f8a29e1968a598d83abc949088a64d51ed 100644 (file)
@@ -38,6 +38,7 @@ private:
 public:
        Architecture(Builder &b, const std::string &spec);
 
+       const std::string &get_type() const { return type; }
        const std::string &get_name() const { return name; }
        const std::string &get_system() const { return system; }
        unsigned get_bits() const { return bits; }
@@ -57,6 +58,4 @@ private:
        void parse_specification(const std::string &);
 };
 
-typedef std::map<std::string, Architecture> ArchMap;
-
 #endif