11 lines
127 B
C++
11 lines
127 B
C++
#ifndef PHONEBOOK_CLASS_HPP
|
|
# define PHONEBOOK_CLASS_HPP
|
|
|
|
class Phonebook {
|
|
public:
|
|
Phonebook();
|
|
~Phonebook();
|
|
};
|
|
|
|
#endif
|