11 lines
146 B
C++
11 lines
146 B
C++
class ContainerInHeaderFile {
|
|
class Iterator {
|
|
};
|
|
|
|
public:
|
|
Iterator begin() const;
|
|
Iterator end() const;
|
|
|
|
int method() { return 0; }
|
|
};
|