/usr/include/cln/V.h is in libcln-dev 1.3.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | // 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 */
|