-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path00_forward.h
More file actions
32 lines (24 loc) · 1006 Bytes
/
00_forward.h
File metadata and controls
32 lines (24 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef Rcpp__vector__foward_h
#define Rcpp__vector__foward_h
namespace Rcpp{
class Na_Proxy ;
namespace internal{
template <int RTYPE> class string_proxy ;
template <int RTYPE> class const_string_proxy ;
template <int RTYPE> class generic_proxy ;
template <int RTYPE> class const_generic_proxy ;
template <int RTYPE> class simple_name_proxy ;
template <int RTYPE> class string_name_proxy ;
template <int RTYPE> class generic_name_proxy ;
}
namespace traits {
template <int RTYPE, bool NA, typename VECTOR> struct Extractor ;
template <int RTYPE> struct r_vector_name_proxy ;
template <int RTYPE> struct r_vector_const_name_proxy ;
template <int RTYPE> struct r_vector_proxy ;
template <int RTYPE> struct r_vector_const_proxy ;
template <int RTYPE> struct r_vector_iterator ;
template <int RTYPE> struct r_vector_const_iterator ;
}
}
#endif