16 lines
210 B
C++
16 lines
210 B
C++
#ifndef OPTIONS_H
|
|
#define OPTIONS_H
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
class Options {
|
|
public:
|
|
string word_lists;
|
|
string images;
|
|
string favicon;
|
|
string css;
|
|
};
|
|
|
|
#endif
|