SOL9 2.0 Class: DesktopWindow

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

Source code

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


// SOL++2000
#pragma once

#include <sol\View.h>

namespace SOL {

class DesktopWindow :public View {
  public:
    DesktopWindow()
    :View(NULL) {
        setWindow(::GetDesktopWindow());
        setDestructable(FALSE);
    }
};

}



Last modified: 1 Feb 2012

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