10 lines
163 B
C++
10 lines
163 B
C++
#include <string>
|
|
// header guard
|
|
#ifndef _ba_fl_hg_
|
|
#define _ba_fl_hg_
|
|
|
|
void PrintHelp();
|
|
void PrintVersion();
|
|
void DeleteLogin(std::string savedir_path);
|
|
|
|
#endif |