Document wxTemp[F]File default ctors

For some reason default ctor wasn't documented, so add it.
This commit is contained in:
Vadim Zeitlin
2020-02-21 14:57:28 +01:00
parent ebc0f056c0
commit 1c6ab1aa65
2 changed files with 14 additions and 0 deletions

View File

@@ -48,6 +48,13 @@
class wxTempFFile
{
public:
/**
Default constructor doesn't do anything.
Call Open() later.
*/
wxTempFFile();
/**
Associates wxTempFFile with the file to be replaced and opens it.

View File

@@ -46,6 +46,13 @@
class wxTempFile
{
public:
/**
Default constructor doesn't do anything.
Call Open() later.
*/
wxTempFile();
/**
Associates wxTempFile with the file to be replaced and opens it.