refactored code, made new comments, extended manualtest.cpp, commented

out tests of unimplemented stuff in test.cpp
This commit is contained in:
2016-10-26 16:37:18 +02:00
parent c1254caf25
commit 5711cb6096
8 changed files with 72 additions and 51 deletions

View File

@ -1,5 +1,7 @@
#pragma once
#include <iostream>
#include <cstring>
#include <memory>
#include "StringValue.h"
#include "Char.h"
class Char;
@ -16,6 +18,9 @@ private:
StringValue* _str;
char* copy_and_concat(const String& str) const;
char* copy_and_concat(char c) const;
public:
String() noexcept;