├── .gitignore ├── Makefile ├── README.md ├── basic-class ├── Makefile ├── README.md ├── bridge.cpp ├── bridge.h ├── circle.hpp ├── cylinder.hpp └── main.go ├── goroutines ├── Makefile ├── fancy.cpp ├── fancy.go └── fancy.hpp ├── library-bridge.cpp ├── library-bridge.h ├── library.cpp ├── library.go └── library.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/README.md -------------------------------------------------------------------------------- /basic-class/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/basic-class/Makefile -------------------------------------------------------------------------------- /basic-class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/basic-class/README.md -------------------------------------------------------------------------------- /basic-class/bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/basic-class/bridge.cpp -------------------------------------------------------------------------------- /basic-class/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/basic-class/bridge.h -------------------------------------------------------------------------------- /basic-class/circle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/basic-class/circle.hpp -------------------------------------------------------------------------------- /basic-class/cylinder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/basic-class/cylinder.hpp -------------------------------------------------------------------------------- /basic-class/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/basic-class/main.go -------------------------------------------------------------------------------- /goroutines/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/goroutines/Makefile -------------------------------------------------------------------------------- /goroutines/fancy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/goroutines/fancy.cpp -------------------------------------------------------------------------------- /goroutines/fancy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/goroutines/fancy.go -------------------------------------------------------------------------------- /goroutines/fancy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/goroutines/fancy.hpp -------------------------------------------------------------------------------- /library-bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/library-bridge.cpp -------------------------------------------------------------------------------- /library-bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/library-bridge.h -------------------------------------------------------------------------------- /library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/library.cpp -------------------------------------------------------------------------------- /library.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/library.go -------------------------------------------------------------------------------- /library.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrieta/golang-cpp-basic-example/HEAD/library.hpp --------------------------------------------------------------------------------