Merge "Clean up the code to build successfully on macOS" into devel/master
[platform/core/uifw/dali-core.git] / dali / integration-api / processor-interface.h
index 1043ac3..70c01bd 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_INTEGRATION_PROCESSOR_INTERFACE_H
 
 /*
- * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2020 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 namespace Dali
 {
-
 namespace Integration
 {
-
 /**
  * Interface to enable classes to be processed after the event loop. Classes are processed
  * in the order they are registered.
@@ -40,15 +38,14 @@ public:
   virtual void Process() = 0;
 
 protected:
-
   /**
    * Virtual protected destructor
    */
-  virtual ~Processor() { }
+  virtual ~Processor() = default;
 };
 
-} // Dali
+} // namespace Integration
 
-} // Integration
+} // namespace Dali
 
 #endif // DALI_INTEGRATION_PROCESSOR_INTERFACE_H
\ No newline at end of file