Files
panda3d/direct/src/plugin/mkdir_complete.h
Sam Edwards b2bfb31114 general: Remove using std::* from headers
Also remove most `using namespace std;` statements. The only one that remains is in py_panda.h.

Closes #350
Closes #335
2018-06-14 16:04:49 +02:00

29 lines
783 B
C++

/**
* PANDA 3D SOFTWARE
* Copyright (c) Carnegie Mellon University. All rights reserved.
*
* All use of this software is subject to the terms of the revised BSD
* license. You should have received a copy of this license along
* with this source code in a file named "LICENSE."
*
* @file mkdir_complete.h
* @author drose
* @date 2009-06-29
*/
#ifndef MKDIR_COMPLETE_H
#define MKDIR_COMPLETE_H
#include <string>
#include <iostream>
bool mkdir_complete(const std::string &dirname, std::ostream &logfile);
bool mkfile_complete(const std::string &dirname, std::ostream &logfile);
#ifdef _WIN32
bool mkdir_complete_w(const std::wstring &dirname, std::ostream &logfile);
bool mkfile_complete_w(const std::wstring &dirname, std::ostream &logfile);
#endif // _WIN32
#endif