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.

19 lines
417 B

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