mirror of
https://github.com/panda3d/panda3d.git
synced 2026-02-19 05:39:25 -06:00
Also remove most `using namespace std;` statements. The only one that remains is in py_panda.h. Closes #350 Closes #335
29 lines
783 B
C++
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
|