Compare commits

...

No commits in common. '4638a40cffd5160b4a54f199b6ebabd1123dac19' and 'adbb2c374b1d3dc7c6906bba04064fce0aa36bae' have entirely different histories.

@ -23,7 +23,6 @@ project/
│   ├── client.cpp
│   ├── MyService.cpp
│   ├── MyService.h
│   ├── rpc_common.h
│   ├── rpc_export.h
│   └── server.cpp
├── tools

@ -1,4 +1,3 @@
// MyService.cpp
#include "MyService.h"
int MyService::add(int a, int b) {

@ -1,4 +1,3 @@
// client.cpp
#include "MyService.proxy.h"
#include <iostream>

@ -1,2 +0,0 @@
#pragma once
// placeholder for shared RPC declarations in future

@ -1,4 +1,3 @@
// server.cpp
#include "MyService.h"
#include "MyService.skeleton.h"

@ -2,8 +2,6 @@
#include <string>
#include <memory>
#include <cstdint>
#include "rpc_common.h" // we'll add this helper header in src/
#include "{{ cls.name }}.skeleton.h" // for type name consistency
class {{ cls.name }}Proxy {
public:

Loading…
Cancel
Save