1
0

Fixed more virtual destructors for interfaces.

This commit is contained in:
madmaxoft
2014-04-02 16:39:42 +02:00
parent b449ad8613
commit 26c3bc4076
4 changed files with 12 additions and 0 deletions

View File

@@ -36,6 +36,9 @@ public:
class cCallbacks
{
public:
// Force a virtual destructor in descendants:
virtual ~cCallbacks() {}
/// Called when a new file part is encountered in the form data
virtual void OnFileStart(cHTTPFormParser & a_Parser, const AString & a_FileName) = 0;