define PgfDB as class for C++ and as struct for C

This commit is contained in:
Krasimir Angelov
2023-01-26 08:22:14 +01:00
parent 69c70694aa
commit ee96bcbb1c

View File

@@ -226,7 +226,11 @@ struct PgfMarshaller {
typedef float prob_t;
#ifdef __cplusplus
class PgfDB;
#else
typedef struct PgfDB PgfDB;
#endif
typedef object PgfRevision;
typedef object PgfConcrRevision;