remove Impl from proxy

This commit is contained in:
Сергей Маринкевич
2025-12-02 19:58:46 +07:00
parent 9f48a74677
commit 40170d553d
3 changed files with 4 additions and 13 deletions
+1 -1
View File
@@ -20,6 +20,6 @@ int main() {
ProxyMarshaller marshaller(ch);
MyServiceProxy proxy(marshaller);
int r = proxy.add(7, 8);
int r = proxy.add(7, 9);
std::cout << "RESULT: " << r << std::endl;
}