Add default constructor to simgear::Dir
This commit is contained in:
parent
3397066343
commit
086a30e61a
@ -44,6 +44,10 @@ using std::string;
|
||||
namespace simgear
|
||||
{
|
||||
|
||||
Dir::Dir()
|
||||
{
|
||||
}
|
||||
|
||||
Dir::Dir(const SGPath& path) :
|
||||
_path(path)
|
||||
{
|
||||
|
@ -42,6 +42,8 @@ namespace simgear
|
||||
class Dir
|
||||
{
|
||||
public:
|
||||
Dir();
|
||||
|
||||
static Dir current();
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user