mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-24 13:08:49 -05:00
Cleanup for coding style
Add strict mode to check_style_guide script
This commit is contained in:
@@ -232,7 +232,7 @@ const std::string NumericalProperty<T>::SteppingValueKey = "SteppingValue";
|
||||
// Delegating constructors are necessary; automatic template deduction cannot
|
||||
// deduce template argument for 'U' if 'default' methods are used as default values in
|
||||
// a single constructor
|
||||
|
||||
|
||||
template <typename T>
|
||||
NumericalProperty<T>::NumericalProperty(Property::PropertyInfo info)
|
||||
: NumericalProperty<T>(
|
||||
|
||||
@@ -148,7 +148,7 @@ public:
|
||||
* \return The type that is requested by this Property's Property::set method
|
||||
*/
|
||||
virtual const std::type_info& type() const;
|
||||
|
||||
|
||||
/**
|
||||
* This method encodes the encapsulated value of this Property at the top of the Lua
|
||||
* stack. The specific details of this serialization is up to the property developer
|
||||
@@ -237,7 +237,7 @@ public:
|
||||
* \return The unique identifier of this Property
|
||||
*/
|
||||
const std::string& identifier() const;
|
||||
|
||||
|
||||
/**
|
||||
* Returns the fully qualified name for this Property that uniquely identifies this
|
||||
* Property within OpenSpace. It consists of the <code>identifier</code> preceded by
|
||||
@@ -260,7 +260,7 @@ public:
|
||||
* \param owner The new PropertyOwner for this Property
|
||||
*/
|
||||
void setPropertyOwner(PropertyOwner* owner);
|
||||
|
||||
|
||||
/**
|
||||
* Returns the human-readable GUI name for this Property that has been set in the
|
||||
* constructor. This method returns the same value as accessing the metaData object
|
||||
|
||||
@@ -56,7 +56,7 @@ public:
|
||||
std::string name;
|
||||
std::string description = "";
|
||||
};
|
||||
|
||||
|
||||
/// The constructor initializing the PropertyOwner's name to <code>""</code>
|
||||
PropertyOwner(PropertyOwnerInfo info);
|
||||
|
||||
@@ -85,7 +85,6 @@ public:
|
||||
void setDescription(std::string description);
|
||||
|
||||
std::string description() const;
|
||||
|
||||
|
||||
/**
|
||||
* Returns a list of all Propertys directly owned by this PropertyOwner. This list not
|
||||
@@ -123,7 +122,7 @@ public:
|
||||
* <code>false</code> otherwise.
|
||||
*/
|
||||
bool hasProperty(const std::string& URI) const;
|
||||
|
||||
|
||||
void setPropertyOwner(PropertyOwner* owner) { _owner = owner; }
|
||||
PropertyOwner* owner() const { return _owner; }
|
||||
|
||||
@@ -171,7 +170,7 @@ public:
|
||||
* <code>groupID</code>
|
||||
*/
|
||||
std::string propertyGroupName(const std::string& groupID) const;
|
||||
|
||||
|
||||
/**
|
||||
* Assigns the Property <code>prop</code> to this PropertyOwner. This method will
|
||||
* check if the name of the Property is unique amongst Propertys and sub-owners in
|
||||
@@ -180,10 +179,10 @@ public:
|
||||
* \param prop The Property whose ownership is changed.
|
||||
*/
|
||||
void addProperty(Property* prop);
|
||||
|
||||
|
||||
/// \see Property::addProperty(Property*)
|
||||
void addProperty(Property& prop);
|
||||
|
||||
|
||||
/**
|
||||
* Adds the provided PropertyOwner to the list of sub-owners for this PropertyOwner.
|
||||
* This means that the name of the <code>owner</code> has to be unique amonst the
|
||||
@@ -206,7 +205,7 @@ public:
|
||||
|
||||
/// \see PropertyOwner::removeProperty(Property*)
|
||||
void removeProperty(Property& prop);
|
||||
|
||||
|
||||
/**
|
||||
* Removes the sub-owner from this PropertyOwner.
|
||||
* \param owner The PropertyOwner that should be removed
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class BoolProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>bool</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class CharProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>char</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class DoubleProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>double</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class FloatProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>float</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class IntProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>int</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class LongDoubleProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>long double</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class LongLongProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>long long</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class LongProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>long</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class ShortProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>short</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class SignedCharProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>signed char</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class UCharProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>unsigned char</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class UIntProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>unsigned int</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class ULongLongProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>unsigned long long</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class ULongProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>unsigned long</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class UShortProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>unsigned short</code>.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
* @{
|
||||
* \addtogroup properties
|
||||
* @{
|
||||
|
||||
|
||||
* \class WCharProperty
|
||||
* This class is a concrete implementation of openspace::properties::TemplateProperty with
|
||||
* the type <code>wchar_t</code>.
|
||||
|
||||
@@ -39,7 +39,7 @@ public:
|
||||
};
|
||||
|
||||
SelectionProperty(Property::PropertyInfo info);
|
||||
|
||||
|
||||
void addOption(Option option);
|
||||
void removeOptions();
|
||||
const std::vector<Option>& options() const;
|
||||
|
||||
Reference in New Issue
Block a user