File tree 5 files changed +24
-7
lines changed
5 files changed +24
-7
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Title: ZRtrading - R - Zinnion SDK
4
4
Version: 0.1.0
5
5
Author: Mauro Delazeri
6
6
Maintainer: Mauro Delazeri <maurodelazeri@gmail.com>
7
- Description: Zinnion Trading and Streaming API to leverage ztrading C/C++
7
+ Description: Zinnion Trading and Streaming API to leverage ztrading C/C++.
8
8
License: GPL-3
9
9
Encoding: UTF-8
10
10
LazyData: true
Original file line number Diff line number Diff line change 1
1
# Generated by using Rcpp::compileAttributes() -> do not edit by hand
2
2
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
3
3
4
+ # ' Multiply a number by two
5
+ # '
6
+ # ' @param x A single integer.
7
+ # ' @export
4
8
test <- function () {
5
9
invisible (.Call(' _zrtrading_test' , PACKAGE = ' zrtrading' ))
6
10
}
7
11
12
+ # ' Multiply a number by two
13
+ # '
14
+ # ' @param x A single integer.
15
+ # ' @export
8
16
simulate_student <- function () {
9
17
.Call(' _zrtrading_simulate_student' , PACKAGE = ' zrtrading' )
10
18
}
Original file line number Diff line number Diff line change @@ -6,10 +6,11 @@ std::vector<int> simulate_student() {
6
6
}
7
7
8
8
void test () {
9
- cout << " mauro" << endl;
10
- cout << add_int (1 ,3 ) << endl;
11
- char *a = " abc" ; // valid and safe in either C or C++.
12
- char *b = " abc" ; // valid and safe in either C or C++.
13
- char *c = " trade:COINBASEPRO:BTC-USD" ; // valid and safe in either C or C++.
14
- init (a,b,c);
9
+ add_int (1 ,3 );
10
+ // cout << "mauro" << endl;
11
+ // cout << add_int(1,3) << endl;
12
+ // char *a = "abc"; // valid and safe in either C or C++.
13
+ // char *b = "abc"; // valid and safe in either C or C++.
14
+ // char *c = "trade:COINBASEPRO:BTC-USD"; // valid and safe in either C or C++.
15
+ // init(a,b,c);
15
16
}
Original file line number Diff line number Diff line change 6
6
using namespace Rcpp ;
7
7
using namespace std ;
8
8
9
+ // ' Multiply a number by two
10
+ // '
11
+ // ' @param x A single integer.
12
+ // ' @export
9
13
// [[Rcpp::export]]
10
14
void test ();
11
15
16
+ // ' Multiply a number by two
17
+ // '
18
+ // ' @param x A single integer.
19
+ // ' @export
12
20
// [[Rcpp::export]]
13
21
std::vector<int > simulate_student ();
You can’t perform that action at this time.
0 commit comments