GlsRSOLoader API  1.3.1
rso_interface_5.h
Go to the documentation of this file.
1 /*! \file
2  \brief Defines the RSO interface v5, which extends v4 to add conditional rendering support
3 
4  \par Copyright Information
5 
6  Copyright (c) 2018 by The DiSTI Corporation.<br>
7  11301 Corporate Blvd; Suite 100<br>
8  Orlando, Florida 32817<br>
9  USA<br>
10  <br>
11  All rights reserved.<br>
12 
13  This Software contains proprietary trade secrets of DiSTI and may not be
14 reproduced, in whole or part, in any form, or by any means of electronic,
15 mechanical, or otherwise, without the written permission of DiSTI. Said
16 permission may be derived through the purchase of applicable DiSTI product
17 licenses which detail the distribution rights of this content and any
18 Derivative Works based on this or other copyrighted DiSTI Software.
19 
20  NO WARRANTY. THE SOFTWARE IS PROVIDED "AS-IS," WITHOUT WARRANTY OF ANY KIND,
21 AND ANY USE OF THIS SOFTWARE PRODUCT IS AT YOUR OWN RISK. TO THE MAXIMUM EXTENT
22 PERMITTED BY APPLICABLE LAW, DISTI AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES
23 AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
24 IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY AND/OR FITNESS FOR A
25 PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE.
26 
27  LIMITATION OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,
28 IN NO EVENT SHALL DISTI OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
29 INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION,
30 DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS
31 INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR
32 INABILITY TO USE THE SOFTWARE, EVEN IF DISTI HAS BEEN ADVISED OF THE POSSIBILITY
33 OF SUCH DAMAGES. DISTI'S ENTIRE LIABILITY AND YOUR EXCLUSIVE REMEDY SHALL NOT
34 EXCEED FIVE DOLLARS (US$5.00).
35 
36  The aforementioned terms and restrictions are governed by the laws of the
37 State of Florida and the United States of America.
38 
39 */
40 #ifndef INCLUDED_RSO_INTERFACE_5_H
41 #define INCLUDED_RSO_INTERFACE_5_H
42 
43 #include "rso_interface_4.h"
44 
45 #include "gls_cpp_lang_support.h"
46 
47 namespace disti
48 {
49 ////////////////////////////////////////////////////////////////////////////////
50 // In order for the RSO to be discovered in a .DLL or .so file,
51 // The following "C" funtions need to be defined.
52 // They are only comments here.
53 ////////////////////////////////////////////////////////////////////////////////
54 // RSOInterface1* CreateRSOInterface5_ClassNameHere()
55 // Optionally:
56 // const char* GlsDefaultClassName()
57 ////////////////////////////////////////////////////////////////////////////////
58 
59 /** The RSOInterface5 class defines an abstract interface to an RSO instance.
60  */
62 {
63 public:
64  class RSOPainter
65  {
66  public:
67  /** Notify the painter that the scene needs to be redrawn */
68  virtual void Invalidate() = 0;
69 
70  protected:
71  RSOPainter() {}
72  virtual ~RSOPainter() {}
73 
74  private:
75  // Disable copying
76  RSOPainter( const RSOPainter& ) DISTI_SPECIAL_MEM_FUN_DELETE;
77  void operator=( const RSOPainter& ) DISTI_SPECIAL_MEM_FUN_DELETE;
78  };
79 
80  virtual void SetPainter( RSOPainter* painter ) = 0;
81 
82 protected:
83  ////////////////////////////////////////////////////////////////////////////////
84  /// Protected destructor so it can't be deleted directly.
85  ////////////////////////////////////////////////////////////////////////////////
86  virtual ~RSOInterface5() {}
87 };
88 
89 } // end namespace disti
90 
91 #endif
Definition: rso_interface_5.h:64
Definition: rso_interface_5.h:61
virtual ~RSOInterface5()
Protected destructor so it can't be deleted directly.
Definition: rso_interface_5.h:86
Definition: rso_interface_4.h:59
Defines the RSO interface v4, which extends v3 to add ResourceObserver.
Definition: rso_interface_1.h:46