2
0
mirror of https://github.com/boostorg/test.git synced 2026-02-19 02:42:13 +00:00
Files
test/doc/v2/snippet/snippet16.cpp
Raffi Enficiaud 8808c349b8 tutorial tdd
2014-01-27 02:40:16 +01:00

9 lines
138 B
C++

//[snippet16
class const_string {
public:
//...
char operator[]( size_t index ) const;
char at( size_t index ) const;
//...
};
//]