clang-format: format test

This commit is contained in:
Dirk Olbrich
2023-09-17 12:30:17 +02:00
committed by Thomas Krijnen
parent 17838f2426
commit 63177a7c35
31 changed files with 6531 additions and 6357 deletions
+19 -18
View File
@@ -20,27 +20,28 @@
#ifndef IFCGLOBALID_H
#define IFCGLOBALID_H
#include <string>
#include <boost/uuid/uuid.hpp>
#include "ifc_parse_api.h"
#include <boost/uuid/uuid.hpp>
#include <string>
namespace IfcParse {
/// A helper class for the creation of IFC GlobalIds.
class IFC_PARSE_API IfcGlobalId {
private:
std::string string_data, formatted_string;
boost::uuids::uuid uuid_data;
public:
static const unsigned int length = 22;
IfcGlobalId();
IfcGlobalId(const std::string&);
operator const std::string&() const;
operator const boost::uuids::uuid&() const;
const std::string& formatted() const;
};
/// A helper class for the creation of IFC GlobalIds.
class IFC_PARSE_API IfcGlobalId {
private:
std::string string_data, formatted_string;
boost::uuids::uuid uuid_data;
}
public:
static const unsigned int length = 22;
IfcGlobalId();
IfcGlobalId(const std::string&);
operator const std::string&() const;
operator const boost::uuids::uuid&() const;
const std::string& formatted() const;
};
#endif
} // namespace IfcParse
#endif