Add default constructor to simgear::Dir

This commit is contained in:
James Turner 2011-10-14 19:28:21 +01:00
parent 3397066343
commit 086a30e61a
2 changed files with 6 additions and 0 deletions

View File

@ -44,6 +44,10 @@ using std::string;
namespace simgear namespace simgear
{ {
Dir::Dir()
{
}
Dir::Dir(const SGPath& path) : Dir::Dir(const SGPath& path) :
_path(path) _path(path)
{ {

View File

@ -42,6 +42,8 @@ namespace simgear
class Dir class Dir
{ {
public: public:
Dir();
static Dir current(); static Dir current();
/** /**