qswiki/headline.h

13 lines
150 B
C
Raw Normal View History

2018-11-03 17:12:20 +01:00
#ifndef HEADLINE_H
#define HEADLINE_H
#include <string>
class Headline
{
public:
unsigned int level;
std::string title;
};
#endif // HEADLINE_H