All Classes Files Functions Variables Enumerations Enumerator Macros
initlists.hpp
Go to the documentation of this file.
1 
9 #ifndef INITLISTS_H
10 #define INITLISTS_H
11 
12 #include "options.hpp"
13 
14 using namespace std;
15 
20 
21 class InitLists
22 {
23 public:
24  // Constructors and destructors
25  InitLists(); // Default constructor
26  ~InitLists(); // Default destructor
27 
28  // User methods
29  static bool initShowlist( ConfigOpts * ); // Loads the contents of the showlist file into an array
30  static bool initBlacklist( ConfigOpts * ); // Loads the contents of the blacklist file into an array
31 };
32 
33 #endif
The ConfigOpts class stores all config options, settings, and flags for clerk.
Stores all config options, settings, and flags for clerk.
Definition: options.hpp:60
Loads the showlist and blacklist files into arrays.
Definition: initlists.hpp:21