1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:37:34 +00:00

IPCCompiler: Emit IEndpoint::name() overrides

This commit is contained in:
Andreas Kling 2019-08-03 16:44:27 +02:00
parent 4fc15c9e6e
commit 659ddddd20

View file

@ -280,6 +280,7 @@ int main(int argc, char** argv)
dbg() << "public:";
dbg() << " " << endpoint.name << "Endpoint() {}";
dbg() << " virtual ~" << endpoint.name << "Endpoint() override {}";
dbg() << " virtual String name() const override { return \"" << endpoint.name << "\"; };";
dbg();
for (auto& message : endpoint.messages) {