]> git.tdb.fi Git - builder.git/blobdiff - source/gnucxxcompiler.h
It's okay to throw exceptions from Loader functions
[builder.git] / source / gnucxxcompiler.h
index bebb7b7616e4cf9e4657cc5601d44838c9357856..a764e89bdcc05923d0c5f4d31bedf15142f911f2 100644 (file)
@@ -3,10 +3,16 @@
 
 #include "gnucompiler.h"
 
+/**
+The GNU C++ compiler, commonly known as g++.
+*/
 class GnuCxxCompiler: public GnuCompiler
 {
 public:
-       GnuCxxCompiler(Builder &);
+       GnuCxxCompiler(Builder &, const Architecture &);
+
+       virtual Target *create_source(const Component &, const Msp::FS::Path &) const;
+       virtual Target *create_source(const Msp::FS::Path &) const;
 };
 
 #endif