WHY_CPP  0.1
i_object.h
1 #pragma once
2 
3 class IObject {
4  public:
5  virtual ~IObject() = default;
6 };
7 
8