Styles implementation.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class CStyles :public virtual IStyles
{
public:
int getStyleCount() override;
IStyle *getStyle(const int index) override;
IStyle *getStyle(const String &class_name) override;
IStyle *getStyle(const String &package, const String &class_name) override;
bool Add(IStyle *style) override;
bool Add(const String &package, IStyle *style) override;
~CStyles();
};
Namespace: | nitisa |
Include: | Nitisa/Core/Styles.h |