The decorator design pattern is a very good solution for extending a class functionality. For instance if I want pre and post processing methods on an existing class method I can create a decorator and override the existing method in the base class and call my pre and post processing methods respectively.
My question here is, the requirement stated above will seldom arise during application design. I cannot mark all the methods I create as virtual so that they can be overridden by a decorator. Hence, I will have to resort to method hiding.
Is there a better way of designing my classes so that in situations where I want to override any methods it can be done in the best possible manner.