qswiki/headline.h

13 lines
150 B
C++

#ifndef HEADLINE_H
#define HEADLINE_H
#include <string>
class Headline
{
public:
unsigned int level;
std::string title;
};
#endif // HEADLINE_H