├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── demo.cpp ├── logo.png └── web++.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konteck/wpp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: cpp 2 | script: make build -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konteck/wpp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konteck/wpp/HEAD/README.md -------------------------------------------------------------------------------- /demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konteck/wpp/HEAD/demo.cpp -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konteck/wpp/HEAD/logo.png -------------------------------------------------------------------------------- /web++.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konteck/wpp/HEAD/web++.hpp --------------------------------------------------------------------------------