view helpgen/topic.h @ 6:607e3be6bad8

Adjust to the moving target called the C++ standard. Apparently nowadays it's not allowed to define an explicit copy constructor but not an assignment operator. Consequently, defining the explicit copy constructor in terms of the implicit/automatic assignment operator for general convenience no longer works. Add assignment operators. Caution: not tested with the IBM compiler, but there's no particular reason it shouldn't work.
author David A. Holland
date Mon, 30 May 2022 23:46:22 -0400
parents 13d2b8934445
children
line wrap: on
line source

#ifndef TOPIC_H
#define TOPIC_H

struct topic; // opaque

struct topic *topic_create(void);
void topic_destroy(struct topic *);

void topic_addtitle(struct topic *, const char *);
void topic_addref(struct topic *, const char *);
void topic_setbody(struct topic *, const char *, size_t len);

const char *topic_getbody(struct topic *);
int topic_getnumtitles(struct topic *);
const char *topic_gettitle(struct topic *, int ix);
int topic_getnumrefs(struct topic *);
const char *topic_getref(struct topic *, int ix);

#endif /* TOPIC_H */