RAMSES Documentation  27.0.130
Information for RAMSES users and developers
ClientObject.h
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // Copyright (C) 2014 BMW Car IT GmbH
3 // -------------------------------------------------------------------------
4 // This Source Code Form is subject to the terms of the Mozilla Public
5 // License, v. 2.0. If a copy of the MPL was not distributed with this
6 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
7 // -------------------------------------------------------------------------
8 
9 #ifndef RAMSES_CLIENTOBJECT_H
10 #define RAMSES_CLIENTOBJECT_H
11 
13 
14 namespace ramses
15 {
20  {
21  public:
25  class ClientObjectImpl& impl;
26 
27  protected:
33  explicit ClientObject(ClientObjectImpl& pimpl);
34 
38  virtual ~ClientObject();
39 
43  friend class RamsesClientImpl;
44 
45  private:
49  ClientObject(const ClientObject& other);
50 
57  ClientObject& operator=(const ClientObject& other);
58  };
59 }
60 
61 #endif
#define RAMSES_API
Definition: APIExport.h:35
The ClientObject is a base class for all client API objects owned by a RamsesClient.
Definition: ClientObject.h:20
ClientObject(ClientObjectImpl &pimpl)
Constructor for ClientObject.
class ClientObjectImpl & impl
Definition: ClientObject.h:25
virtual ~ClientObject()
Destructor of the ClientObject.
The RamsesObject is a base class for all client API objects owned by the framework.
Definition: RamsesObject.h:21
The RAMSES namespace contains all client side objects and functions used to implement RAMSES applicat...
Definition: AnimatedProperty.h:15