PieDock 1.6.0

src/ArgbSurface.h

00001 /*
00002  *   O         ,-
00003  *  ° o    . -´  '     ,-
00004  *   °  .´        ` . ´,´
00005  *     ( °   ))     . (
00006  *      `-;_    . -´ `.`.
00007  *          `._'       ´
00008  *
00009  * Copyright (c) 2007-2010 Markus Fisch <mf@markusfisch.de>
00010  *
00011  * Licensed under the MIT license:
00012  * http://www.opensource.org/licenses/mit-license.php
00013  */
00014 #ifndef _PieDock_ArgbSurface_
00015 #define _PieDock_ArgbSurface_
00016 
00017 #include "Surface.h"
00018 
00019 namespace PieDock
00020 {
00026     class ArgbSurface : public Surface
00027     {
00028         public:
00029             ArgbSurface( int, int );
00030             virtual ~ArgbSurface() {}
00031     };
00032 }
00033 
00034 #endif