#ifndef NSFS_H_
#define NSFS_H_

#include <string>
#include <vector>

namespace nsfs {

  std::string CreateAuthorizationForm();

  void ClearAuthorizationCache();

  void *StartChildProcess(const std::string &command, const std::vector<std::string> &args, bool test_mode);

  int WaitForChildProcessToExit(void *, bool test_mode);

} // namespace nsfs

#endif // NSFS_H_
