├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md └── efvicap.cpp /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/efvicap/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/efvicap/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/efvicap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/efvicap/HEAD/README.md -------------------------------------------------------------------------------- /efvicap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/efvicap/HEAD/efvicap.cpp --------------------------------------------------------------------------------