]> git.tdb.fi Git - builder.git/blobdiff - source/sourcefile.h
Update cross prefix for windows architecture
[builder.git] / source / sourcefile.h
index 9f126ac4d4781d19228f222075a204c9bf31027e..bdb657f83345171ffcdb608c176f525da5431c90 100644 (file)
@@ -3,17 +3,11 @@
 
 #include "filetarget.h"
 
-class Component;
-
 class SourceFile: public FileTarget
 {
 protected:
-       const Component *comp;
-
-       SourceFile(Builder &, const Component *, const Msp::FS::Path &);
-
-public:
-       const Component *get_component() const { return comp; }
+       SourceFile(Builder &, const Msp::FS::Path &);
+       SourceFile(Builder &, const Component &, const Msp::FS::Path &);
 };
 
 #endif