~3v1n0/nux/check-dnd_area-trusty

« back to all changes in this revision

Viewing changes to NuxCore/Property.h

  • Committer: Tarmac
  • Author(s): Eleni Maria Stea
  • Date: 2013-11-05 19:31:42 UTC
  • mfrom: (826.1.1 nux)
  • Revision ID: tarmac-20131105193142-qky69oflhxgwnbvs
added virtual destructors where missing (fixing static analysis errors).

Approved by Brandon Schaefer, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
class PropertyBase
193
193
{
194
194
public:
 
195
  virtual ~PropertyBase() {}
195
196
  virtual bool SetValue(std::string const& serialized_form) = 0;
196
197
  virtual std::string GetSerializedValue() const = 0;
197
198
};