Add default constructor to simgear::Dir
This commit is contained in:
parent
3397066343
commit
086a30e61a
@ -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)
|
||||||
{
|
{
|
||||||
|
@ -42,6 +42,8 @@ namespace simgear
|
|||||||
class Dir
|
class Dir
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
Dir();
|
||||||
|
|
||||||
static Dir current();
|
static Dir current();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user