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