1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:18:12 +00:00

Base: Split out cpp-library template files into actual files

These were part of the postcreate script previously, but with the new
powers of sed, we can text-replace the library name and make changing
them much more convenient.
This commit is contained in:
kleines Filmröllchen 2023-03-07 23:14:58 +01:00 committed by Ali Mohammad Pur
parent 2451e97a11
commit fd68e9f1ac
3 changed files with 25 additions and 31 deletions

View file

@ -0,0 +1,10 @@
#pragma once
namespace $LibName {
class Class1 {
public:
void hello();
};
}