]> www.ginac.de Git - cln.git/blob - include/cln/V.h
Make @exec_prefix@ usable in shell scripts.
[cln.git] / include / cln / V.h
1 // Vectors.
2
3 #ifndef _CL_V_H
4 #define _CL_V_H
5
6 #include "cln/object.h"
7
8 namespace cln {
9
10 struct cl_V_any : public cl_gcpointer {
11         // Constructors.
12         cl_V_any () {}
13         cl_V_any (const cl_V_any&);
14         cl_V_any (cl_private_thing p) : cl_gcpointer (p) {}
15         // Assignment operators.
16         cl_V_any& operator= (const cl_V_any&);
17 };
18 CL_DEFINE_COPY_CONSTRUCTOR2(cl_V_any,cl_gcpointer)
19 CL_DEFINE_ASSIGNMENT_OPERATOR(cl_V_any,cl_V_any)
20
21 }  // namespace cln
22
23 #endif /* _CL_V_H */