├── .github └── workflows │ ├── build.yml │ └── publish.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── README.md ├── examples ├── README.md ├── Syphon.py ├── client.py └── server.py ├── setup.py ├── syphon_cxx.hpp ├── syphon_cxx.mm ├── syphon_cxx_tests ├── Info.plist ├── syphon_cxx_tests.mm └── syphon_cxx_tests.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ └── njazz.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── tester.py └── wrapper.cpp /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/Syphon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/examples/Syphon.py -------------------------------------------------------------------------------- /examples/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/examples/client.py -------------------------------------------------------------------------------- /examples/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/examples/server.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/setup.py -------------------------------------------------------------------------------- /syphon_cxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/syphon_cxx.hpp -------------------------------------------------------------------------------- /syphon_cxx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/syphon_cxx.mm -------------------------------------------------------------------------------- /syphon_cxx_tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/syphon_cxx_tests/Info.plist -------------------------------------------------------------------------------- /syphon_cxx_tests/syphon_cxx_tests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/syphon_cxx_tests/syphon_cxx_tests.mm -------------------------------------------------------------------------------- /syphon_cxx_tests/syphon_cxx_tests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/syphon_cxx_tests/syphon_cxx_tests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /syphon_cxx_tests/syphon_cxx_tests.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/syphon_cxx_tests/syphon_cxx_tests.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /syphon_cxx_tests/syphon_cxx_tests.xcodeproj/project.xcworkspace/xcuserdata/njazz.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/syphon_cxx_tests/syphon_cxx_tests.xcodeproj/project.xcworkspace/xcuserdata/njazz.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/tester.py -------------------------------------------------------------------------------- /wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njazz/syphonpy/HEAD/wrapper.cpp --------------------------------------------------------------------------------