C/C++
ramin.lst
Associated article: Examining the StarView Application Framework
Tags: .NET C/C++ Tools Open Source
_Examining the StarView Application Framework_
by Ramin Firoozy
#include <sv.hxx>
class TheApplication : public Application
{
public:
virtual void Main(int, char *[]);
};
class TheWindow : public WorkWindow
{
public:
TheWindow(Window *parent, WinBits windowStyle) :
WorkWindow(parent, windowStyle) {}
virtual void Paint(const ...


