Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dcooley/rapidxmlr
https://github.com/dcooley/rapidxmlr
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dcooley/rapidxmlr
- Owner: dcooley
- License: other
- Created: 2019-03-10T07:55:54.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-03-13T10:10:48.000Z (over 5 years ago)
- Last Synced: 2024-05-02T05:01:21.120Z (6 months ago)
- Language: C++
- Size: 28.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rapidxml
R interface to the C++ header-only Rapidxml library
This package is using v1.13 of rapidxml.
## Install
Install the development version with
```r
devtools::install_github("dcooley/rapidxml")
```## Using rapidxml
To use rapidxml in your own package, add a dependency to rapidxml to your cpp files before a call to #include
```c++
// [[Rcpp::depends(rapidxml)]]#include
```