globjects  1.0.0.000000000000
Strict OpenGL objects wrapper.
HeapOnly.h
Go to the documentation of this file.
1 
2 #pragma once
3 
4 #include <globjects/globjects_api.h>
5 
6 
7 namespace globjects
8 {
9 
10 
16 class GLOBJECTS_API HeapOnly
17 {
18 public:
19  HeapOnly();
20 
21  void destroy() const;
22 
23 protected:
24  virtual ~HeapOnly();
25 };
26 
27 
28 } // namespace globjects
Contains all the classes that wrap OpenGL functionality.
The HeapOnly class Restricts creation to heap.
Definition: HeapOnly.h:16