ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
This commit is contained in:
@@ -21,29 +21,32 @@
|
||||
#include <string>
|
||||
#include <map>
|
||||
#include <vector>
|
||||
#include <algorithm> // sort()
|
||||
#include <algorithm> // sort()
|
||||
|
||||
#include "COLLADASaxFWLIErrorHandler.h"
|
||||
|
||||
/** \brief Handler class for parser errors
|
||||
*/
|
||||
class ErrorHandler : public COLLADASaxFWL::IErrorHandler
|
||||
{
|
||||
public:
|
||||
/** Constructor. */
|
||||
ErrorHandler();
|
||||
class ErrorHandler : public COLLADASaxFWL::IErrorHandler {
|
||||
public:
|
||||
/** Constructor. */
|
||||
ErrorHandler();
|
||||
|
||||
/** Destructor. */
|
||||
virtual ~ErrorHandler();
|
||||
/** handle any error thrown by the parser. */
|
||||
bool virtual handleError(const COLLADASaxFWL::IError* error);
|
||||
/** True if there was an error during parsing. */
|
||||
bool hasError() { return mError; }
|
||||
private:
|
||||
/** Disable default copy ctor. */
|
||||
ErrorHandler(const ErrorHandler& pre);
|
||||
/** Disable default assignment operator. */
|
||||
const ErrorHandler& operator= ( const ErrorHandler& pre );
|
||||
/** Hold error status. */
|
||||
bool mError;
|
||||
/** Destructor. */
|
||||
virtual ~ErrorHandler();
|
||||
/** handle any error thrown by the parser. */
|
||||
bool virtual handleError(const COLLADASaxFWL::IError *error);
|
||||
/** True if there was an error during parsing. */
|
||||
bool hasError()
|
||||
{
|
||||
return mError;
|
||||
}
|
||||
|
||||
private:
|
||||
/** Disable default copy ctor. */
|
||||
ErrorHandler(const ErrorHandler &pre);
|
||||
/** Disable default assignment operator. */
|
||||
const ErrorHandler &operator=(const ErrorHandler &pre);
|
||||
/** Hold error status. */
|
||||
bool mError;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user