Very basic stuff working on linux 32-bit with dmd and phobos2.
This commit is contained in:
parent
f23eee9828
commit
67f0225e42
152 changed files with 113 additions and 0 deletions
72
tests/FullSkeleton/libraryB/render/RendererX11.d
Normal file
72
tests/FullSkeleton/libraryB/render/RendererX11.d
Normal file
|
@ -0,0 +1,72 @@
|
|||
/**
|
||||
*
|
||||
* enCurseD RendererX11 Class
|
||||
*
|
||||
* Authors: Tim Burrell
|
||||
* Copyright: Copyright (c) 2007
|
||||
* License: <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>
|
||||
*
|
||||
**/
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
// Module
|
||||
///////////////////////////////////////
|
||||
|
||||
module libraryB.render.RendererX11;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
// Imports
|
||||
///////////////////////////////////////
|
||||
|
||||
import libraryB.render.Renderer;
|
||||
import libraryA.io.Output;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
// Class Definition
|
||||
///////////////////////////////////////
|
||||
|
||||
/**
|
||||
* RendererX11 Class
|
||||
**/
|
||||
class RendererX11 : Renderer {
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Construction
|
||||
///////////////////////////////
|
||||
|
||||
/**
|
||||
* Default Constructor
|
||||
**/
|
||||
this() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Destructor
|
||||
**/
|
||||
~this() {
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Public functions
|
||||
///////////////////////////////
|
||||
|
||||
/**
|
||||
* Initialize the renderer
|
||||
**/
|
||||
void initialize() {
|
||||
Out("LibraryB X11 Renderer Initializing...");
|
||||
|
||||
Out("LibraryB X11 Renderer Initialized");
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
||||
private:
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Private Functions
|
||||
///////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Private Members
|
||||
///////////////////////////////
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue