mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
Coding - Apply .clang-format formatting #286
Update empty method guards to new style with regex (see PR). Used clang-format 18.1.8. New actions to validate code formatting is added. Update .clang-format with disabling of include sorting. It is temporary changes, then include will be sorted. Apply formatting for /src and /tools folder. The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
This commit is contained in:
@@ -21,30 +21,28 @@
|
||||
#include <XmlLDrivers_DocumentRetrievalDriver.hxx>
|
||||
#include <XmlMDF_ADriverTable.hxx>
|
||||
|
||||
|
||||
// Retrieval driver of a TObj XML document
|
||||
//
|
||||
|
||||
class XmlTObjDrivers_DocumentRetrievalDriver :
|
||||
public XmlLDrivers_DocumentRetrievalDriver
|
||||
class XmlTObjDrivers_DocumentRetrievalDriver : public XmlLDrivers_DocumentRetrievalDriver
|
||||
{
|
||||
public:
|
||||
public:
|
||||
// ---------- PUBLIC METHODS ----------
|
||||
|
||||
Standard_EXPORT XmlTObjDrivers_DocumentRetrievalDriver ();
|
||||
Standard_EXPORT XmlTObjDrivers_DocumentRetrievalDriver();
|
||||
// Constructor
|
||||
|
||||
Standard_EXPORT virtual Handle(XmlMDF_ADriverTable) AttributeDrivers
|
||||
(const Handle(Message_Messenger)& theMsgDriver) Standard_OVERRIDE;
|
||||
Standard_EXPORT virtual Handle(XmlMDF_ADriverTable) AttributeDrivers(
|
||||
const Handle(Message_Messenger)& theMsgDriver) Standard_OVERRIDE;
|
||||
|
||||
public:
|
||||
public:
|
||||
// Declaration of CASCADE RTTI
|
||||
DEFINE_STANDARD_RTTIEXT(XmlTObjDrivers_DocumentRetrievalDriver,XmlLDrivers_DocumentRetrievalDriver)
|
||||
DEFINE_STANDARD_RTTIEXT(XmlTObjDrivers_DocumentRetrievalDriver,
|
||||
XmlLDrivers_DocumentRetrievalDriver)
|
||||
};
|
||||
|
||||
// Definition of HANDLE object using Standard_DefineHandle.hxx
|
||||
DEFINE_STANDARD_HANDLE (XmlTObjDrivers_DocumentRetrievalDriver,
|
||||
XmlLDrivers_DocumentRetrievalDriver)
|
||||
DEFINE_STANDARD_HANDLE(XmlTObjDrivers_DocumentRetrievalDriver, XmlLDrivers_DocumentRetrievalDriver)
|
||||
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user