lowercase filename, pragma once and property specializations corrected
This commit is contained in:
@@ -396,8 +396,8 @@ public:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
explicit PropertyT(const std::string& _name = "<unknown>")
|
explicit PropertyT(const std::string& _name = "<unknown>", const std::string& _internal_type_name="" )
|
||||||
: BaseProperty(_name)
|
: BaseProperty(_name, _internal_type_name)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
public: // inherited from BaseProperty
|
public: // inherited from BaseProperty
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
#define OPENMESH_PROPERTYCONTAINER
|
#define OPENMESH_PROPERTYCONTAINER
|
||||||
|
|
||||||
#include <OpenMesh/Core/Utils/Property.hh>
|
#include <OpenMesh/Core/Utils/Property.hh>
|
||||||
#include <OpenMesh/Core/Utils/TypeName.hh>
|
#include <OpenMesh/Core/Utils/typename.hh>
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
namespace OpenMesh
|
namespace OpenMesh
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
#ifndef TYPENAME_HH
|
#pragma once
|
||||||
#define TYPENAME_HH
|
|
||||||
|
|
||||||
/// Get an internal name for a type
|
/// Get an internal name for a type
|
||||||
/// Important, this is depends on compilers and versions, do NOT se in file formats!
|
/// Important, this is depends on compilers and versions, do NOT se in file formats!
|
||||||
@@ -25,5 +24,3 @@ std::string get_type_name()
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // TYPENAME_HH
|
|
||||||
|
|||||||
Reference in New Issue
Block a user