Adds an extremely basic shared library

This commit is contained in:
2023-03-08 19:23:01 -06:00
parent 9e92799698
commit d71f284625
5 changed files with 56 additions and 15 deletions
+13
View File
@@ -0,0 +1,13 @@
#include<string>
class File {
private:
const std::string name;
public:
File(const std::string);
const std::string getName() const;
};
// vim: set ts=4 expandtab :