summaryrefslogtreecommitdiff
path: root/pkgconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'pkgconfig.h')
-rw-r--r--pkgconfig.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgconfig.h b/pkgconfig.h
index 93c0972..57b1c3b 100644
--- a/pkgconfig.h
+++ b/pkgconfig.h
@@ -35,6 +35,14 @@ namespace pkgconfig
*/
typedef std::map < std::string, std::string > table;
+ /**
+ * Constructor and load the file.
+ */
+ package (const std::string& name);
+
+ /**
+ * Default constructor.
+ */
package ();
/**
@@ -57,7 +65,6 @@ namespace pkgconfig
private:
table defines; ///< The defines.
table fields; ///< The fields.
-
};
}