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
23 lines
456 B
// Vectors.
|
|
|
|
#ifndef _CL_V_H
|
|
#define _CL_V_H
|
|
|
|
#include "cln/object.h"
|
|
|
|
namespace cln {
|
|
|
|
struct cl_V_any : public cl_gcpointer {
|
|
// Constructors.
|
|
cl_V_any () {}
|
|
cl_V_any (const cl_V_any&);
|
|
cl_V_any (cl_private_thing p) : cl_gcpointer (p) {}
|
|
// Assignment operators.
|
|
cl_V_any& operator= (const cl_V_any&);
|
|
};
|
|
CL_DEFINE_COPY_CONSTRUCTOR2(cl_V_any,cl_gcpointer)
|
|
CL_DEFINE_ASSIGNMENT_OPERATOR(cl_V_any,cl_V_any)
|
|
|
|
} // namespace cln
|
|
|
|
#endif /* _CL_V_H */
|