publish PfmVizzer destructor to fix leak

This commit is contained in:
David Rose 2017-01-04 16:56:09 -08:00
parent 63eb1636a9
commit c4d232b0be
2 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,10 @@ get_pfm() {
return _pfm;
}
INLINE PfmVizzer::
~PfmVizzer() {
}
/**
* Returns the reference to the PfmFile manipulated by this PfmVizzer.
*/

View File

@ -30,6 +30,7 @@ class GeomVertexWriter;
class EXPCL_PANDA_GRUTIL PfmVizzer {
PUBLISHED:
PfmVizzer(PfmFile &pfm);
INLINE ~PfmVizzer();
INLINE PfmFile &get_pfm();
INLINE const PfmFile &get_pfm() const;