Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-19 08:08:33

0001 // Vectors.
0002 
0003 #ifndef _CL_V_H
0004 #define _CL_V_H
0005 
0006 #include "cln/object.h"
0007 
0008 namespace cln {
0009 
0010 struct cl_V_any : public cl_gcpointer {
0011     // Constructors.
0012     cl_V_any () {}
0013     cl_V_any (const cl_V_any&);
0014     cl_V_any (cl_private_thing p) : cl_gcpointer (p) {}
0015     // Assignment operators.
0016     cl_V_any& operator= (const cl_V_any&);
0017 };
0018 CL_DEFINE_COPY_CONSTRUCTOR2(cl_V_any,cl_gcpointer)
0019 CL_DEFINE_ASSIGNMENT_OPERATOR(cl_V_any,cl_V_any)
0020 
0021 }  // namespace cln
0022 
0023 #endif /* _CL_V_H */