Tagged Questions

0
votes
5answers
114 views

How do I override delete() on a model and have it still work with related deletes

class Widget(models.Model): title = models.CharField(max_length=255) class WidgetFile(models.Model): widget = models.ForeignKey(Widget) def delete(): # do some custom hard drive …
2
votes
2answers
1k views

Overloading global operator new/delete in C++

I am trying to overload the global operator new and delete for a performance sensitive application. I have read the concerns described at …
1
vote
1answer
249 views

overloading delete, pure virtual func call

So i want to overload delete of a abstract virtual class. This will call deleteMe() in the derived class which is in another lib. This is to prevent error/crashes mention here …
1
vote
4answers
119 views

delete overload, recursive overflow

Hey guys i wrote a quick test. I want delete to call deleteMe which will then delete itself. The purpose of this is so i can delete obj normally which are allocated by a lib. (i dont want any crashes …