1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-21 13:35:07 +00:00
serenity/Base/res/devel/templates/cpp-library/Class1.h
kleines Filmröllchen fd68e9f1ac 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.
2023-05-05 02:15:43 +03:30

10 lines
83 B
C++

#pragma once
namespace $LibName {
class Class1 {
public:
void hello();
};
}