NAP
coreextension.h
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4 
5 #pragma once
6 
7 #include <utility/dllexport.h>
8 #include <rtti/typeinfo.h>
9 
10 namespace nap
11 {
17  class NAPAPI CoreExtension
18  {
19  RTTI_ENABLE()
20  public:
24  CoreExtension() = default;
25 
29  virtual ~CoreExtension() { }
30 
34  CoreExtension(CoreExtension&) = delete;
35  CoreExtension& operator=(const CoreExtension&) = delete;
36 
40  CoreExtension(CoreExtension&&) = delete;
41  CoreExtension& operator=(CoreExtension&&) = delete;
42  };
43 }
nap::CoreExtension::~CoreExtension
virtual ~CoreExtension()
Definition: coreextension.h:29
nap
Definition: templateapp.h:17
nap::CoreExtension
Definition: coreextension.h:17