随笔分类 - C/C++
摘要:CMakeLists.txt cmake_minimum_required(VERSION 3.16) set(CMAKE_CXX_STANDARD 11) project(test) set(SRC src/HelloWorld.cpp) # 配置cpp源文件到SRC变量中 set(EXECUTA
阅读全文
摘要://CMakeLists.txt cmake_minimum_required(VERSION 3.21) project(cns) set(CMAKE_CXX_STANDARD 23) find_package(BISON) find_package(FLEX) BISON_TARGET(MyPa
阅读全文
该文被密码保护。
该文被密码保护。
该文被密码保护。
摘要:a1@1deMacBook-Pro phone1 % wsdl2h -o phoneService.h phoneService.wsdl -t api.bat Saving phoneService.h ** The gSOAP WSDL/WADL/XSD processor for C and
阅读全文
摘要:# Project: server # Makefile created by Embarcadero Dev-C++ 6.3 CPP = g++.exe CC = gcc.exe WINDRES = windres.exe OBJ = helloserver.o soapC.o soapServe
阅读全文
摘要://MakefileGSOAP_ROOT = F:\gsoap-2.8\gsoap WSNAME = hello CC = g++ -g -DWITH_NONAMESPACES INCLUDE = -I $(GSOAP_ROOT) SERVER_OBJS =soapC.o stdsoap2.o so
阅读全文
摘要:一 、hello.h #include <iostream> using namespace std; int ns__hello(std::string* name,std::string &greeting); ~ 二、helloclient.cpp #include "soapH.h" #in
阅读全文
摘要:一 、参考 https://blog.csdn.net/Ikaros_521/article/details/103232677 二、hello.h h__hello(char*&); 三、 //helloclient.cpp #include "soapH.h" #include "h.nsmap
阅读全文
摘要:一、 // hello.h int ns__hello(std::string name, std::string& greeting); 二、 //helloclient.cpp #include "soapH.h" #include "ns.nsmap" #include <string> #i
阅读全文