mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 13:35:07 +00:00

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.
10 lines
83 B
C++
10 lines
83 B
C++
#pragma once
|
|
|
|
namespace $LibName {
|
|
|
|
class Class1 {
|
|
public:
|
|
void hello();
|
|
};
|
|
|
|
}
|