]> git.tdb.fi Git - builder.git/blobdiff - source/systemlibrary.h
Get rid of the Library and SystemLibrary classes as unnecessary abstractions
[builder.git] / source / systemlibrary.h
diff --git a/source/systemlibrary.h b/source/systemlibrary.h
deleted file mode 100644 (file)
index ee647ff..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef SYSTEMLIBRARY_H_
-#define SYSTEMLIBRARY_H_
-
-#include "library.h"
-
-/**
-A library that doesn't belong to any known package.
-*/
-class SystemLibrary: public Library
-{
-public:
-       SystemLibrary(Builder &, const Msp::FS::Path &);
-
-       virtual const char *get_type() const { return "SystemLibrary"; }
-private:
-       static std::string extract_libname(const Msp::FS::Path &);
-};
-
-#endif