├── .travis.yml ├── LICENSE ├── README.md ├── cocoa.cpp ├── cocoa.hpp ├── sample.cc └── tests.cxx /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/cocoa/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/cocoa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/cocoa/HEAD/README.md -------------------------------------------------------------------------------- /cocoa.cpp: -------------------------------------------------------------------------------- 1 | #include "cocoa.hpp" 2 | -------------------------------------------------------------------------------- /cocoa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/cocoa/HEAD/cocoa.hpp -------------------------------------------------------------------------------- /sample.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/cocoa/HEAD/sample.cc -------------------------------------------------------------------------------- /tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/cocoa/HEAD/tests.cxx --------------------------------------------------------------------------------