1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 20:57:35 +00:00

Import all this stuff into a single repo called Serenity.

This commit is contained in:
Andreas Kling 2018-10-10 11:53:07 +02:00
commit 5a30055157
67 changed files with 8836 additions and 0 deletions

25
AK/StringBuilder.h Normal file
View file

@ -0,0 +1,25 @@
#pragma once
#include "String.h"
#include "Vector.h"
namespace AK {
class StringBuilder {
public:
StringBuilder() { }
~StringBuilder() { }
void append(String&&);
void append(char);
String build();
private:
Vector<String> m_strings;
};
}
using AK::StringBuilder;