mirror of
https://github.com/joel16/VITA-Homebrew-Sorter.git
synced 2024-11-30 06:40:41 +00:00
12 lines
199 B
C
12 lines
199 B
C
|
#ifndef _VITA_HB_SORTER_DB_BROWSER_H_
|
||
|
#define _VITA_HB_SORTER_DB_BROWSER_H_
|
||
|
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
|
||
|
namespace DBBrowser {
|
||
|
int GetTables(std::vector<std::string> &tables);
|
||
|
}
|
||
|
|
||
|
#endif
|