13 rivejä
148 B
C++
13 rivejä
148 B
C++
#ifndef HEADLINE_H
|
|
#define HEADLINE_H
|
|
|
|
#include <string>
|
|
class Headline
|
|
{
|
|
public:
|
|
unsigned int level;
|
|
std::string title;
|
|
};
|
|
|
|
#endif // HEADLINE_H
|