SOL9 2.0 Class: IGdiObject

 SOL9 C++ Class Library  SOL9 Samples  SOL9 Tutorial  SOL9 FAQ  SOL9 ClassTree 

Source code

/*
 * IGdiObject.h 
 * Copyright (c) 2011 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED. 
 */


// SOL++2000
// 2000.07.26 Modified
#pragma once

#include <sol\Resource.h>

namespace SOL {


class IGdiObject :public Resource {

public:
    IGdiObject(HANDLE handle)

        :Resource(NULL, handle) {
    }

public:
    IGdiObject(const TCHAR* name, HANDLE handle)
        :Resource(name, handle) {
    }

    virtual void    set(class DC* dc1) = 0;

    void    flush() { GdiFlush(); }
};

}







Last modified: 1 Feb 2012

Copyright (c) 2009-2012 Antillia.com ALL RIGHTS RESERVED.