Represent an interface class.
- Namespace
- xtd
- Library
- xtd.core
- Examples
class istringable : public interface {
public:
};
class foo : public istringable {
public:
foo() = default;
std:
string to_string()
const override {
return "foo";}
};
- Examples:
- interface2.cpp.
The documentation for this class was generated from the following file: