Euphoria
id.cc
Go to the documentation of this file.
1 #include "render/id.h"
2 
3 #include "assert/assert.h"
4 
5 namespace eu::render
6 {
8  : id(0)
9  {
10  }
11 
12  gl::Uint
13  Id::get_id() const
14  {
15  return id;
16  }
17 }
unsigned int Uint
Definition: gltypes.h:6
gl::Uint get_id() const
Definition: id.cc:13
gl::Uint id
Definition: id.h:23