You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
456 B

25 years ago
25 years ago
25 years ago
  1. // Vectors.
  2. #ifndef _CL_V_H
  3. #define _CL_V_H
  4. #include "cln/object.h"
  5. namespace cln {
  6. struct cl_V_any : public cl_gcpointer {
  7. // Constructors.
  8. cl_V_any () {}
  9. cl_V_any (const cl_V_any&);
  10. cl_V_any (cl_private_thing p) : cl_gcpointer (p) {}
  11. // Assignment operators.
  12. cl_V_any& operator= (const cl_V_any&);
  13. };
  14. CL_DEFINE_COPY_CONSTRUCTOR2(cl_V_any,cl_gcpointer)
  15. CL_DEFINE_ASSIGNMENT_OPERATOR(cl_V_any,cl_V_any)
  16. } // namespace cln
  17. #endif /* _CL_V_H */